PowerPoint.Interfaces.TableData interface    
An interface describing the data returned by calling table.toJSON().
Properties
| column | Gets the number of columns in the table. | 
| row | Gets the number of rows in the table. | 
| values | Gets all of the values in the table. | 
Property Details
		columnCount
	 
	Gets the number of columns in the table.
columnCount?: number;Property Value
number
Remarks
		rowCount
	 
	Gets the number of rows in the table.
rowCount?: number;Property Value
number
Remarks
values
Gets all of the values in the table.
values?: string[][];Property Value
string[][]