Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
Description

Excerpt

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

Signature
C#
C#
 public virtual Element SubElement(int start, int end)
Signature
vb.net
vb.net
Public Overridable Function SubElement(ByVal start As Integer, ByVal [end] As Integer) As Element
Parameters
Param
start
start

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

Param
end
end

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

Returns

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

Example
Code Block
csharp
csharp
titleC#
Element subE = e.SubElement();
Code Block
vb.net
vb.net
titlevb.net
Dim subE As Element = e.SubElement()