'Declaration Public Overloads Function AddTable( _ ByVal tableName As System.String, _ ByVal row As System.Integer, _ ByVal column As System.Integer, _ ByVal datasource As System.Object, _ 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 datasource As System.Object Dim tableStyle As TableStyle Dim value As SheetTable value = instance.AddTable(tableName, row, column, datasource, tableStyle)
public SheetTable AddTable( System.string tableName, System.int row, System.int column, System.object datasource, TableStyle tableStyle )
Parameters
- tableName
- The table name.
- row
- The row index.
- column
- The column index.
- datasource
- The data source for the table.
- tableStyle
- The style of the table.
Return Value
The new table instance.