'Declaration Public Overloads Function AddTable( _ ByVal tableName As System.String, _ ByVal row As System.Integer, _ ByVal column As System.Integer, _ ByVal rowCount As System.Integer, _ ByVal columnCount As System.Integer, _ ByVal tableStyle As TableStyle _ ) As SheetTable
'Usage Dim instance As Worksheet Dim tableName As System.String Dim row As System.Integer Dim column As System.Integer Dim rowCount As System.Integer Dim columnCount As System.Integer Dim tableStyle As TableStyle Dim value As SheetTable value = instance.AddTable(tableName, row, column, rowCount, columnCount, tableStyle)
public SheetTable AddTable( System.string tableName, System.int row, System.int column, System.int rowCount, System.int columnCount, TableStyle tableStyle )
Parameters
- tableName
- The table name.
- row
- The row index.
- column
- The column index.
- rowCount
- The row count of the table.
- columnCount
- The column count of the table.
- tableStyle
- The style of the table.
Return Value
The new table instance.