[]
        
(Showing Draft Content)

GrapeCity.Documents.Word.RangeLocation

Enum RangeLocation

Namespace
GrapeCity.Documents.Word
Assembly
GcDocs.Word.dll

Determines the position where to insert a new ContentRange or get a part of the specified range.

public enum RangeLocation

Fields

After = 1

Specifies an empty range immediately after the specified range.

Before = 0

Specifies an empty range immediately before the specified range.

Content = 5

Specifies a range that extends from the Start of the specified range to its End.

Note that any inserted content will be included in the specified range.

End = 3

Specifies an empty range at the end of the specified range.

Start = 2

Specifies an empty range at the start of the specified range.

Whole = 4

Specifies a range that includes the whole specified range from its Before to its After position (i.e. from the position immediately before to the position immediately after the range).

Note that any inserted content will not be included in the specified range.