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

構文

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 関数の標準的な戻り値です。

関連項目

ImageViewer ScreenToDocument