| PHP |
|---|
| public function GetIndentString(): string |
| PHP |
|---|
$tb = new LJCTextBuilder();
$tb->AddIndent();
// Example Method:
$text = hb->GetIndentString();
$tb->AddText($text);
$tb->AddText(":");
$result = hb->ToString();
// result:
// :
|