Shape.Table Property
Returns a DataTable object that represents a table in a shape or in a shape range. Read-only.
Namespace: Microsoft.Office.Interop.PowerPoint
Assembly: Microsoft.Office.Interop.PowerPoint (in Microsoft.Office.Interop.PowerPoint.dll)
Syntax
'Declaration
ReadOnly Property Table As Table
Get
'Usage
Dim instance As Shape
Dim value As Table
value = instance.Table
Table Table { get; }
Property Value
Type: Microsoft.Office.Interop.PowerPoint.Table
Table
Examples
This example sets the width of the first column in the table in shape five on the second slide to 80 points.
ActivePresentation.Slides(2).Shapes(5).Table.Columns(1).Width = 80