Web.HTTPApp.TWebActionItems.Items

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Items[Index: Integer]: TWebActionItem read GetActionItem

C++

__property TWebActionItem* Items[int Index] = {read=GetActionItem, write=SetActionItem/*, default*/};

Properties

Type Visibility Source Unit Parent
property public
Web.HTTPApp.pas
Web.HTTPApp.hpp
Web.HTTPApp TWebActionItems

Description

Lists the TWebActionItem objects stored by this TWebActionItems object.

Use Items to get access to the individual action items stored by the TWebActionItems object. Items is an indexed array, where the first action item has index 0, the second action item has index 1, and so on. Use Items with the Count property to iterate over all the action items in the collection.

See Also