ComponentOne Excel for UWP
C1.UWP.Excel Assembly / C1.Xaml.Excel Namespace / XLCellRange Class / XLCellRange Constructor / XLCellRange Constructor(XLSheet,Int32,Int32,Int32,Int32,XLReferenceType,XLReferenceType,XLReferenceType,XLReferenceType)
The XLSheet of this cell range.
Top row in the range.
Bottom row in the range.
Left column in the range.
Right column in the range.
The reference type of the top row in the range.
The reference type of the bottom row in the range.
The reference type of the left column in the range.
The reference type of the right column in the range.

In This Topic
    XLCellRange Constructor(XLSheet,Int32,Int32,Int32,Int32,XLReferenceType,XLReferenceType,XLReferenceType,XLReferenceType)
    In This Topic
    Creates an instance of an XLCellRange object containing a specified range.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal sheet As XLSheet, _
       ByVal rowFrom As System.Integer, _
       ByVal rowTo As System.Integer, _
       ByVal colFrom As System.Integer, _
       ByVal colTo As System.Integer, _
       ByVal rowFromRef As XLReferenceType, _
       ByVal rowToRef As XLReferenceType, _
       ByVal colFromRef As XLReferenceType, _
       ByVal colToRef As XLReferenceType _
    )
    public XLCellRange( 
       XLSheet sheet,
       System.int rowFrom,
       System.int rowTo,
       System.int colFrom,
       System.int colTo,
       XLReferenceType rowFromRef,
       XLReferenceType rowToRef,
       XLReferenceType colFromRef,
       XLReferenceType colToRef
    )

    Parameters

    sheet
    The XLSheet of this cell range.
    rowFrom
    Top row in the range.
    rowTo
    Bottom row in the range.
    colFrom
    Left column in the range.
    colTo
    Right column in the range.
    rowFromRef
    The reference type of the top row in the range.
    rowToRef
    The reference type of the bottom row in the range.
    colFromRef
    The reference type of the left column in the range.
    colToRef
    The reference type of the right column in the range.
    See Also