Returns the Caption object
that represents a <CAPTION> tag that may
immediately follow the <TABLE> tag. Use this object
to set your grid's title.
Although Caption is a read-only property,
a direct assignment such as
Grid.Table.Caption = "Employees"
is acceptable as the Caption object exposes a default Value property.
When set via XML, the tag <TableCaption> must be used, not <Caption>,
because the latter is being used as a sub-element of the <Column> element.
Usage:
VBScript |
Grid.Table.Caption = "Employees"
Grid.Table.Caption.Font.Face = "Arial"
|
XML |
<Grid>...
<Table>
<TableCaption Value="Employees">
<Font Face="Arial"/>
</TableCaption>
</Table>
</Grid>
|
Relevant Chapters |
3 and all others.
|