StdIn Function
Retrieves the global reference to the standard input stream, used in ConsoleApplications.
Syntax
result = StdIn( )
Return Value | ||
Result |
The standard input stream is typically the keyboard as used for the Terminal application. It could be a file, serial control, socket or other such input device on some systems. |
Notes
The Stdin method implements the Readable class interface. If you implement this interface, you must implement the methods and parameters specified by the class interface.
For more information about class interfaces and how to implement them, see the section "Class Interfaces" in the User's Guide.
See Also
ConsoleApplication, StandardInputStream, StandardOutputStream classes; TargetHasGUI constant; Input, Print, StdOut, StdErr methods; Readable class interface.