Web.DBWeb.THTMLTableColumn.Title

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Title: THTMLTableHeaderAttributes read FTitle write SetTitle;

C++

__property Web::Httpprod::THTMLTableHeaderAttributes* Title = {read=FTitle, write=SetTitle};

Properties

Type Visibility Source Unit Parent
property published
Web.DBWeb.pas
Web.DBWeb.hpp
Web.DBWeb THTMLTableColumn

Description

Specifies the display attributes to be added to the header cell that appears at the top of the column.

Set Title to a THTMLTableHeaderAttributes object that describes the display attributes for the HTML TH tag for the header cell at the top of the column. Setting Title calls the Assign method of the THTMLTableHeaderAttributes object stored internally by THTMLTableColumn. Thus, the memory for any table header attributes object assigned to the Title property is never owned or freed by the HTML table column.

Note: Not all the properties of the table header attributes object are copied when one table attributes object is assigned to another. To ensure that all the attributes represented by Title are set appropriately, read Title and set the individual properties of the THTMLTableHeaderAttributes object.

See Also