ViewToLogical Method (Document Object)¶
Convert the display coordinates of a specified position to the logical coordinates, and retrieves the position in the Point object. x Specifies the one-based horizontal (character) position. y Specifies the one-based vertical (line) position. Supported on EmEditor Professional Version 17.0 or later.¶
[JavaScript]¶
point = document.ViewToLogical( x, y );
[VBScript]¶
point = document.ViewToLogical( x, y )
Parameters¶
Examples¶
[JavaScript]¶
point = document.ViewToLogical( 10, 1 );
x = point.x;
y = point.y;
[VBScript]¶
point = document.ViewToLogical( 10, 1 )
x = point.x
y = point.y
Version¶