| JavaScript |
|---|
| GetIndentString() |
| JavaScript |
|---|
// Gets the current indent string.
GetIndentString()
{
const tb = new LJCTextBuilder();
tb.AddIndent();
// Example Method:
const result = tb.GetIndentString();
// result:
// " "
}
|