Package: mlreportgen.ppt
Table in presentation
Use an object of the mlreportgen.ppt.Table
class to include a table in
a PPT API presentation.
Create a table using one of these approaches:
Create an empty table and append table rows that have table entries for each column.
Create a table from an array or cell array that specifies the table content.
After you create a table, you can add rows to the table, and add entries to each table row.
The mlreportgen.ppt.Table
class is a handle
class.
HandleCompatible | true |
ConstructOnLoad | true |
For information on class attributes, see Class Attributes.
creates an empty tableObj
= mlreportgen.ppt.Table()Table
object.
sets the NCols property to
tableObj
= mlreportgen.ppt.Table(nCols)nCols
.
returns a table that has the content specified by
tableObj
= mlreportgen.ppt.Table(tableValues
)tableValues
.
returns a table that has the specified content and sets the StyleName property
to tableObj
= mlreportgen.ppt.Table(tableValues
,styleName
)styleName
. To get the list of valid style names, use the
getTableStyleNames
method of
the mlreportgen.ppt.Presentation
object.
mlreportgen.ppt.TableEntry
| mlreportgen.ppt.TablePlaceholder
| mlreportgen.ppt.TableRow
| mlreportgen.ppt.TemplateTable