IXmlText
IXmlText
IXmlText
IXmlText
Interface
Definition
Represents the text content of an element or attribute.
public : interface IXmlTextpublic interface IXmlTextPublic Interface IXmlText// You can use this interface in JavaScript.
- Inheritance
- Attributes
Windows 10 requirements
| Device family |
Windows 10 (introduced v10.0.10240.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v1)
|
Inherited Members
Inherited methods
DeleteData(UInt32,UInt32)DeleteData(UInt32,UInt32)DeleteData(UInt32,UInt32)DeleteData(UInt32,UInt32)
InsertBefore(IXmlNode,IXmlNode)InsertBefore(IXmlNode,IXmlNode)InsertBefore(IXmlNode,IXmlNode)InsertBefore(IXmlNode,IXmlNode)
InsertData(UInt32,String)InsertData(UInt32,String)InsertData(UInt32,String)InsertData(UInt32,String)
ReplaceChild(IXmlNode,IXmlNode)ReplaceChild(IXmlNode,IXmlNode)ReplaceChild(IXmlNode,IXmlNode)ReplaceChild(IXmlNode,IXmlNode)
ReplaceData(UInt32,UInt32,String)ReplaceData(UInt32,UInt32,String)ReplaceData(UInt32,UInt32,String)ReplaceData(UInt32,UInt32,String)
SelectNodesNS(String,Object)SelectNodesNS(String,Object)SelectNodesNS(String,Object)SelectNodesNS(String,Object)
Inherited properties
Remarks
Interface inheritance
IXmlText inherits IXmlCharacterData, IXmlNode, IXmlNodeSelector, and IXmlNodeSerializer. Types that implement IXmlText also implement the interface members of IXmlCharacterData, IXmlNode, IXmlNodeSelector, and IXmlNodeSerializer.
Methods
SplitText(UInt32) SplitText(UInt32) SplitText(UInt32) SplitText(UInt32)
Splits this text node into two text nodes at the specified offset and inserts the new text node into the tree as a sibling that immediately follows this node.
public : IXmlText SplitText(unsigned int offset)public IXmlText SplitText(UInt32 offset)Public Function SplitText(offset As UInt32) As IXmlText// You can use this method in JavaScript.
Parameters
- offset
- unsigned int UInt32 UInt32 UInt32
The number of characters at which to split this text node into two nodes, starting from zero.
Returns