ASP.NET Core MVC Controls | ComponentOne
C1.Web.Mvc.Sheet Namespace / CellPosition Class / CellPosition Constructor / CellPosition Constructor(Int32,Int32)
The column number.
The row number.






In This Topic
    CellPosition Constructor(Int32,Int32)
    In This Topic
    Create a CellPosition by coordinate components.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal col As System.Integer, _
       ByVal row As System.Integer _
    )
    'Usage
     
    
    Dim col As System.Integer
    Dim row As System.Integer
     
    Dim instance As New CellPosition(col, row)
    public CellPosition( 
       System.int col,
       System.int row
    )
    public CellPosition( 
        col: System.Integer;
        row: System.Integer
    ); 
    public function CellPosition( 
       col : System.int,
       row : System.int
    );
    public: CellPosition( 
       System.int col,
       System.int row
    )
    public:
    CellPosition( 
       System.int col,
       System.int row
    )

    Parameters

    col
    The column number.
    row
    The row number.
    See Also