Word.Interfaces.XmlNodeUpdateData interface
An interface for updating data on the XmlNode object, for use in xmlNode.set({ ... }).
Properties
| placeholder |
Specifies the text displayed for this element if it contains no text. Only applies to element nodes, not attribute nodes. |
| text | Specifies the text contained within the XML element. Returns an empty string if the node type is |
Property Details
placeholderText
Specifies the text displayed for this element if it contains no text. Only applies to element nodes, not attribute nodes.
placeholderText?: string;
Property Value
string
Remarks
text
Specifies the text contained within the XML element. Returns an empty string if the node type is attribute.
text?: string;
Property Value
string