Document Solutions for Word
GrapeCity.Documents.Word Assembly / GrapeCity.Documents.Word Namespace / RangeLocation Enumeration

In This Topic
    RangeLocation Enumeration
    In This Topic
    Determines the position where to insert a new ContentRange or get a part of the specified range.
    Syntax
    'Declaration
     
    Public Enum RangeLocation 
       Inherits System.Enum
    public enum RangeLocation : System.Enum 
    Members
    MemberDescription
    After Specifies an empty range immediately after the specified range.
    Before Specifies an empty range immediately before the specified range.
    ContentSpecifies 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 Specifies an empty range at the end of the specified range.
    Start Specifies an empty range at the start of the specified range.
    WholeSpecifies 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.

    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             GrapeCity.Documents.Word.RangeLocation

    See Also