Web.HTTPApp.TCustomWebDispatcher.Action

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Action[Index: Integer]: TWebActionItem read GetAction;

C++

__property TWebActionItem* Action[int Index] = {read=GetAction};

Properties

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

Description

Provides indexed access to the action items managed by the TCustomWebDispatcher object.

Use Action to iterate over all of the actions in the Actions collection. Zero is the index of the first action item, one is the index of the second action item, and so on. To access individual actions by name, use the ActionByName method.

See Also