[]
Represents a marker pointing to a position in a document relative to a specific ContentObject.
The marker can point to a position at the start of an object (Start, at the end of an object (see End, or to a position occupied by a whole childless object (Whole.
If the marker belongs to a PersistentRange, it can be used even if its ContentObject has been deleted.
public class Marker
Gets the ContentObject with which this marker is associated.
public ContentObject Content { get; }
Gets the Section which ends in this marker.
public Section EndSection { get; }
Gets the next Marker in the body order.
public Marker Next { get; }
Gets the previous Marker in the body order.
public Marker Previous { get; }
Gets the Section which starts in this marker.
public Section StartSection { get; }
Gets the marker type.
public MarkerType Type { get; }
Gets string representation of the marker.
public override string ToString()
String representation of the marker.
Gets string representation of the marker.
public string ToString(string indent)
indent
stringThe indent string before representation.
String representation of the marker.