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

语法

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