Difference between revisions of "API Console.GetLineText"
From Flowcode Help
Jump to navigationJump to search (XML import API changes)  | 
				 (XML Import to change Variable types into Variable Types)  | 
				||
| Line 10: | Line 10: | ||
==Parameters==  | ==Parameters==  | ||
| − | [[Variable   | + | [[Variable Types|HANDLE]] ''ConsoleHandle''  | 
:A valid console windows handle  | :A valid console windows handle  | ||
| − | [[Variable   | + | [[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==  | ||
| − | [[Variable   | + | [[Variable Types|STRING]]  | 
''<span style="color:red;">No additional information</span>''  | ''<span style="color:red;">No additional information</span>''  | ||
Revision as of 11:08, 10 June 2013
<sidebar>API contents</sidebar> Reads a line of text from the given console, pass -1 for final line
Contents
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