Web.DBWeb.TDSTableProducer.ColumnHeader

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function ColumnHeader: string; dynamic;

C++

DYNAMIC System::UnicodeString __fastcall ColumnHeader();

Properties

Type Visibility Source Unit Parent
function protected
Web.DBWeb.pas
Web.DBWeb.hpp
Web.DBWeb TDSTableProducer

Description

Returns the string of HTML <TH> tags that define the column headers for the table.

The table producer uses this protected method when it assembles its HTML table. For each THTMLTableColumn object listed in the Columns property, ColumnHeader looks up the string that labels it (using its Title property or the display name for the field if there is no title caption.) ColumnHeader then creates a table header (<TH>) tag that describes the column label, including all the properties specified by the THTMLTableColumn object.

See Also