Creates an OnOffElement.
The XML element name (e.g., "w:b", "w:i")
The boolean value (defaults to true)
Adds a child element to this component.
The child component or text string to add
This component (for chaining)
Prepares this component and its children for XML serialization.
This method is called by the Formatter to convert the component tree into an object structure compatible with the xml library (https://www.npmjs.com/package/xml). It recursively processes all children and handles special cases like attribute-only elements and empty elements.
The method can be overridden by subclasses to customize XML representation or execute side effects during serialization (e.g., creating relationships).
The serialization context containing document state
The XML-serializable object, or undefined to exclude from output
XML element representing a boolean on/off value (CT_OnOff).
This element type is used throughout WordprocessingML to represent boolean properties. A value of true (or 1) means the property is enabled. A value of false (or 0) means it is explicitly disabled. When the value is true, the attribute is often omitted.
OOXML Reference:
Example