GameTypeText Method |  |
Hartismere School[This is preliminary documentation and is subject to change.]
Types the text into the console(non-GUI) or control(GUI) simulating a typewriter.
Namespace: EJW.TextBasedAdventureAssembly: EJW.TextBasedAdventure (in EJW.TextBasedAdventure.dll) Version: 2.0.5850.21153
Syntaxpublic void TypeText(
string text
)
Public Sub TypeText (
text As String
)
public:
void TypeText(
String^ text
)
member TypeText :
text : string -> unit
Parameters
- text
- Type: SystemString
The text to display
Examples
To type text into the console...
string t = "Welcome to my game".
TypeText( t.SentenceCase().LineWrap(Console.WindowWidth) );
See Also