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

語法

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