CONSOLE_SCREEN_BUFFER_INFO STRUCT   (MS-Windows)

   Contains information about the console screen buffer.


CONSOLE_SCREEN_BUFFER_INFO STRUCT
  dwSize        COORD <>
  dwCursorPos   COORD <>
  wAttributes   WORD ?
  srWindow      SMALL_RECT <>
  dwMaxWinSize  COORD <>
CONSOLE_SCREEN_BUFFER_INFO ENDS

Member Win Type MASM Type Description
dwSize COORD COORD  Size of screen buffer (columns x rows).
dwCursorPos COORD COORD  Cursor position in screen buffer (column, row).
wArrtibutes WORD WORD  Foreground and background color to be used when characters are written by WriteFile and WriteConsole, or echoed by ReadFile and ReadConsole functions.
srWindow SMALL_RECT SMALL_RECT  Screen buffer coordinates of the upper left and lower right corners of the display window.
dwMaxWinSize COORD COORD  Maximum size of the current console window (given the current buffer size, font, and screen size).

Converted from CHM to HTML with chm2web Pro 2.85 (unicode)