メインコンテンツへスキップ
このメソッドは、ドキュメント画像上の指定された点の座標を画面座標に変換します。

構文

C++

HRESULT DocumentToScreen(
  int  DocumentX,
  int  DocumentY,
  int* ScreenX,
  int* ScreenY
);

C#

void DocumentToScreen(
  int     DocumentX,
  int     DocumentY,
  out int ScreenX,
  out int ScreenY
);

Visual Basic .NET

Sub DocumentToScreen( _
  DocumentX As Integer, _
  DocumentY As Integer, _
  ScreenX As Integer, _
  ScreenY As Integer _
)

パラメーター

DocumentX [in] ドキュメント画像上の点の水平方向の座標を指定します。 DocumentY [in] ドキュメント画像上の点の垂直方向の座標を指定します。 ScreenX [out] 画面座標での点の水平方向の座標が返されます。 ScreenY [out] 画面座標での点の垂直方向の座標が返されます。

戻り値

このメソッドには特定の戻り値はありません。代わりに、ABBYY FineReader Engine 関数の標準戻り値が返されます。

関連項目

TextEditor ScreenToDocument