Sets a new cell for this table.
Syntax
'Declaration
Public Sub SetCell( _
ByVal columnIndex As Integer, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Rectangle _
)
'Usage
Dim instance As FormTable
Dim columnIndex As Integer
Dim rowIndex As Integer
Dim documentPageIndex As Integer
Dim area As Rectangle
instance.SetCell(columnIndex, rowIndex, documentPageIndex, area)
public void SetCell(
int columnIndex,
int ,
int ,
Rectangle
)
public: void SetCell(
int columnIndex,
int ,
int ,
Rectangle
)
public:
void SetCell(
int columnIndex,
int ,
int ,
Rectangle
)
Parameters
- columnIndex
- Zero-based index of the column in which the cell is located.
- rowIndex
- Zero-based index of the row in which the cell is located.
- documentPageIndex
- Zero-based index of the DocumentPage containing the new cell.
- area
- Area of the cell on the DocumentPage. Measured in pixels from the top left of the specified DocumentPage.
Exceptions
See Also