Web.DBWeb.THTMLTableColumns.Items

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Items[Index: Integer]: THTMLTableColumn read GetColumn write SetColumn; default;

C++

__property THTMLTableColumn* Items[int Index] = {read=GetColumn, write=SetColumn/*, default*/};

Properties

Type Visibility Source Unit Parent
property public
Web.DBWeb.pas
Web.DBWeb.hpp
Web.DBWeb THTMLTableColumns

Description

Lists the THTMLTableColumn objects that THTMLTableColumns stores and manages for its TDSTableProducer object.

Use Items to access the individual column descriptors managed by THTMLTableColumns. Items is an indexed array, where the first column descriptor has index 0, the second column descriptor has index 1, and so on.

Note: In Delphi, Items is the default property of THTMLTableColumns. This means that applications do not need to specify the Items property name when referring to the elements of the Items array.

Note: In C++, you can use the [] operator to obtain an effect similar to using Items as the default property in Delphi.

See Also