Creates and returns a Element object that represents a sub Element within this Element based on the specified start and end offsets.

 public virtual Element SubElement(int start, int end)
Public Overridable Function SubElement(ByVal start As Integer, ByVal [end] As Integer) As Element

An int representing the starting offset of the sub Element relative to the start of this Element.

An int representing the ending offset of the sub Element relative the start of this Element.

A Element object that represents a sub Element within this Element.

Element subE = e.SubElement();
Dim subE As Element = e.SubElement()