ComponentOne Excel for UWP
C1.UWP.Excel Assembly / C1.Xaml.Excel Namespace / XLCellRange Class / XLCellRange Constructor / XLCellRange Constructor(XLSheet,Int32,Int32,XLReferenceType,XLReferenceType)
The XLSheet of the range.
The row in the range equal one cell.
The column in the range equal one cell.
The reference type of the row.
The reference type of the column.

In This Topic
    XLCellRange Constructor(XLSheet,Int32,Int32,XLReferenceType,XLReferenceType)
    In This Topic
    Creates an instance of an XLCellRange object containing a specified range.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal ws As XLSheet, _
       ByVal row As System.Integer, _
       ByVal col As System.Integer, _
       ByVal rowRef As XLReferenceType, _
       ByVal colRef As XLReferenceType _
    )
    public XLCellRange( 
       XLSheet ws,
       System.int row,
       System.int col,
       XLReferenceType rowRef,
       XLReferenceType colRef
    )

    Parameters

    ws
    The XLSheet of the range.
    row
    The row in the range equal one cell.
    col
    The column in the range equal one cell.
    rowRef
    The reference type of the row.
    colRef
    The reference type of the column.
    See Also