API Console.GetLineText: Difference between revisions
Appearance
XML import |
XML import |
||
| Line 15: | Line 15: | ||
[[Variable types|ULONG]] ''Line'' | [[Variable types|ULONG]] ''Line'' | ||
:The zero-based index of the line to read the text from | :The zero-based index of the line to read the text from | ||
==Return value== | ==Return value== | ||
| Line 20: | Line 21: | ||
''<span style="color:red;">No additional information</span>'' | ''<span style="color:red;">No additional information</span>'' | ||
Revision as of 01:54, 12 May 2013
<sidebar>API contents</sidebar> Reads a line of text from the given console, pass -1 for final line
Parameters
HANDLE ConsoleHandle
- A valid console windows handle
ULONG Line
- The zero-based index of the line to read the text from
Return value
No additional information
Detailed description
No additional information
Examples
Calling in a calculation
- Declare a variable 'result' of type STRING
- Add to a calculation icon:
result = ::Console.GetLineText(consolehandle, line)
No additional information