-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GITBOOK-72: change request with no subject merged in GitBook
- Loading branch information
1 parent
272b8d3
commit 98c95cf
Showing
3 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Runtime Objects (GueDeriving) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# TextRuntime | ||
|
||
### Introduction | ||
|
||
The TextRuntime object is used to draw strings to the screen. It supports a variety of options for rendering text including alignment, fonts, coloring, and line wrapping. | ||
|
||
### Example | ||
|
||
To create a TextRuntime, instantiate it and add it to the managers as shown in the following code: | ||
|
||
```csharp | ||
var textInstance = new TextRuntime(); | ||
textInstance.Text = "Hello world"; | ||
text.AddToManagers(SystemManagers.Default, null); | ||
``` |