NVTDISPLAYINFO Structure  
 

This structure is used by the GetDisplayInfo method to return information about the specified virtual terminal display. No member of this structure should be modified directly by the application.

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.

Requirements

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