Click or drag to resize
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.TextBasedAdventure
Assembly: EJW.TextBasedAdventure (in EJW.TextBasedAdventure.dll) Version: 2.0.5850.21153
Syntax
public void TypeText(
	string text
)

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