LogicalToView 方法 (Document 对象)¶
将指定位置的逻辑坐标转换为显示坐标,并检索 Point 对象 中的位置。 x 指定基于单个的水平(字符)位置。 y 指定基于单个的垂直(行)位置。 支持 EmEditor Professional 17.0 或之后的版本。¶
[JavaScript]¶
point = document.LogicalView( x, y );
[VBScript]¶
point = document.LogicalView( x, y )
参数¶
示例¶
[JavaScript]¶
point = document.LogicalToView( 10, 1 );
x = point.x;
y = point.y;
[VBScript]¶
point = document.LogicalToView( 10, 1 )
x = point.x
y = point.y
版本¶