跳转到主要内容
此方法会将文档图像中指定点的坐标转换为屏幕坐标。

语法

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