'Declaration Public Overloads Function AddTable( _ ByVal rowCount As Integer, _ ByVal columnCount As Integer _ ) As Table
'Usage Dim instance As Document Dim rowCount As Integer Dim columnCount As Integer Dim value As Table value = instance.AddTable(rowCount, columnCount)
public Table AddTable( int rowCount, int columnCount )
Parameters
- rowCount
- The row count for the new Table.
- columnCount
- The column count for the new Table.
Return Value
The newly created Table.