跳轉到主要內容
此方法會將文件影像中指定點的座標轉換成螢幕座標。

語法

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