Excel for WPF | ComponentOne
C1.Silverlight.Excel Namespace / XLRange Class / XLRange Constructor / XLRange Constructor(Int32,Int32,Int32,Int32)
The index of the top row in the range.
The index of the left column in the range.
The index of the bottom row in the range.
The index of the right column in the range.

In This Topic
    XLRange Constructor(Int32,Int32,Int32,Int32)
    In This Topic
    Initialization range.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal rowFirst As Integer, _
       ByVal colFirst As Integer, _
       ByVal rowLast As Integer, _
       ByVal colLast As Integer _
    )
    public XLRange( 
       int rowFirst,
       int colFirst,
       int rowLast,
       int colLast
    )

    Parameters

    rowFirst
    The index of the top row in the range.
    colFirst
    The index of the left column in the range.
    rowLast
    The index of the bottom row in the range.
    colLast
    The index of the right column in the range.
    See Also