CellPosition Constructor(Int32,Int32)
In This Topic
Create a CellPosition by coordinate components.
Syntax
'Declaration
Public Function New( _
ByVal As System.Integer, _
ByVal 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 ,
System.int
)
public CellPosition(
: System.Integer;
: System.Integer
);
public function CellPosition(
: System.int,
: System.int
);
public: CellPosition(
System.int ,
System.int
)
public:
CellPosition(
System.int ,
System.int
)
Parameters
- col
- The column number.
- row
- The row number.
See Also