/ LJCPHPCodeDoc / LJCTextBuilderLib / LJCTextBuilder / ToString


Returns

The HTML text.

Syntax

JavaScript
ToString()

Gets the built string.

Example

JavaScript
// Gets the built string.
ToString()
{
  const tb = new LJCTextBuilder();
  tb.Text("This is some text.");

  // Example Method:
  const result = tb.ToString();

  // result;
  // "This is some text."
}

Copyright © Lester J. Clark and Contributors.
Licensed under the MIT License.