| JavaScript |
|---|
| AddIndent(increment = 1) |
| JavaScript/th> |
|---|
// Changes the IndentCount by the provided value.
AddIndent()
{
const tb = new LJCTextBuilder();
// Example Method:
tb.AddIndent(2);
const result = tb.GetText("This is indented text.");
// result:
// " This is indented text."
}
|