.DISPLAY_AREA
WTSupported in traditional Synergy on Windows
|
WNSupported in Synergy .NET on Windows
|
USupported on UNIX
|
VSupported on OpenVMS
|
.DISPLAY_AREA row, column, height, width
Arguments
row
The row position of the upper-left corner of the display area (relative to the upper-left corner of the window, not the display screen).
column
The column position of the upper-left corner of the display area (relative to the upper-left corner of the window, not the display screen).
height
The number of rows deep the display area will be.
width
The number of columns wide the display area will be.
Discussion
The .DISPLAY_AREA command defines the dimensions and placement of the display area for a general window (.WINDOW) or input window (.INPUT). The display area defines the view into a window and defaults to the entire window.
The view is movable if the display area is smaller than the size of the window. If the window is an input window, the input processing system adjusts the location if necessary to include the entire input field being processed.
Row 1, column 1 is the upper-left corner.
See also
- Input fields
- .PLACEMENT script command for considerations of display area size
- Notes and tips for ActiveX Toolkit lists for information on setting the display area for an input window that is associated with an ActiveX Toolkit list
Examples
The following .DISPLAY_AREA command defines a movable view for the realbig window, which is larger than the screen. The upper-left corner of the display area is at window row 3, column 1, and the area is 16 rows deep by 78 columns wide.
.input realbig, 48, 78 .display_area 3, 1, 16, 78