NVTDISPLAYINFO  
 

The NVTDISPLAYINFO structure contains information about the virtual terminal display.

typedef struct _NVTDISPLAYINFO {
   HWND    hWnd;
   HFONT   hFont;
   INT     xPos;
   INT     yPos;
   INT     cxClient;
   INT     cyClient;
   INT     cxChar;
   INT     cyChar;
   INT     nScrollCol;
   INT     nScrollRow;
   INT     nMaxScrollCol;
   INT     nMaxScrollRow;
} NVTDISPLAYINFO, *LPNVTDISPLAYINFO;

Members

hWnd
The handle to the terminal emulation display window.
hFont
The handle to the current font.
xPos
The current display x coordinate.
yPos
The current display y coordinate.
cxClient
The width of the client window in pixels.
cyClient
The height of the client window in pixels.
cxChar
The width of the current font in pixels.
cyChar
The height of the current font in pixels.
nScrollCol
The current horizontal scrolling column.
nScrollRow
The current vertical scrolling row.
nMaxScrollCol
The maximum horizontal scrolling column.
nMaxScrollRow
The maximum vertical scrolling row.

Remarks

This structure is populated by the GetDisplayInfo method to provide information about the current state of the virtual terminal. Member of this structure should be modified directly by the application.

Requirements

Minimum Desktop Platform: Windows 7 Service Pack 1
Minimum Server Platform: Windows Server 2008 R2 Service Pack 1
Header File: cstools11.h

See Also

Create, GetDisplayInfo