ASP.NET Core MVC Controls | ComponentOne
C1.Web.Mvc.Grid Namespace / CellRange Class / CellRange Constructor / CellRange Constructor(Int32,Int32,Int32,Int32)
Index of the first row in this range.
Index of the first column in this range.
Index of the last row in this range.
Index of the first column in this range.






In This Topic
    CellRange Constructor(Int32,Int32,Int32,Int32)
    In This Topic
    Creates one CellRange instance.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal r As System.Integer, _
       ByVal c As System.Integer, _
       ByVal r2 As System.Integer, _
       ByVal c2 As System.Integer _
    )
    'Usage
     
    
    Dim r As System.Integer
    Dim c As System.Integer
    Dim r2 As System.Integer
    Dim c2 As System.Integer
     
    Dim instance As New CellRange(r, c, r2, c2)
    public CellRange( 
       System.int r,
       System.int c,
       System.int r2,
       System.int c2
    )
    public CellRange( 
        r: System.Integer;
        c: System.Integer;
        r2: System.Integer;
        c2: System.Integer
    ); 
    public function CellRange( 
       r : System.int,
       c : System.int,
       r2 : System.int,
       c2 : System.int
    );
    public: CellRange( 
       System.int r,
       System.int c,
       System.int r2,
       System.int c2
    )
    public:
    CellRange( 
       System.int r,
       System.int c,
       System.int r2,
       System.int c2
    )

    Parameters

    r
    Index of the first row in this range.
    c
    Index of the first column in this range.
    r2
    Index of the last row in this range.
    c2
    Index of the first column in this range.
    See Also