[]
Abstract base class representing content with floating start and end marks. This allows the range to start inside one ContentObject and end in another, which is useful for bookmarks, comments etc.
Derived classes include Section Comment, Bookmark, ComplexField and EditableRange.
public abstract class ContentRange
Gets the child ContentObjects in this content range.
public IEnumerable<ContentObject> Children { get; }
Gets the DocumentBase that contains this content.
public DocumentBase Document { get; }
Gets the end mark of this content.
public ContentMark End { get; }
Gets the parent Body of this content.
public Body ParentBody { get; }
Gets the start mark of this content.
public ContentMark Start { get; }
Deletes this content from the parent Body.
public virtual void Delete()
Creates and returns a Range object representing this content in the body.
public virtual Range GetRange()
Gets string representation of the content.
public override string ToString()
String representation of the content.