'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 _ ) 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 value As SheetTable value = instance.AddTable(tableName, row, column, datasource)
public SheetTable AddTable( System.string tableName, System.int row, System.int column, System.object datasource )
Parameters
- tableName
- The table name.
- row
- The row index.
- column
- The column index.
- datasource
- The data source for the table.
Return Value
The new table instance.