| JavaScript |
|---|
| StartAttribs() |
| JavaScript |
|---|
// Creates the XML element attributes.
StartAttribs()
{
// Root Method Begin
let textState = new LJCTextState();
const tb = new LJCTextBuilder(textState);
// Example Method:
const attribs = tb.StartAttribs()
const result = tb.GetAttribs(attribs, textState);
// result:
// " lang=\"en\""
}
|