void GetStdioWindowOptions (int *maxNumLines, int *bringToFrontWhenModified, int *showLineNumbers);
Gets the current value of the following Standard Input/Output window options:
Output | ||
Name | Type | Description |
maxNumLines | integer | Maximum number of lines you can store in the Standard Input/Output window. If this amount is exceeded, lines are discarded from the top. If the Standard I/O port is set to HOST_SYSTEM_STDIO, this value is not used. You can pass NULL. |
bringToFrontWhenModified | integer | Indicates whether to bring the Standard Input/Output window to the front each time you add a string or character. You can pass NULL. 1 = Yes 0 = No |
showLineNumbers | integer | Indicates whether to show line numbers in the Standard Input/Output window. If the Standard I/O port is set to HOST_SYSTEM_STDIO, this value is not used. Line numbers are never shown in a console window. You can pass NULL. 1 = Yes 0 = No |
None.