Web.HTTPApp.TWebActionItem.Name

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Name: string read GetDisplayName write SetDisplayName;

C++

__property System::UnicodeString Name = {read=GetDisplayName, write=SetDisplayName};

Properties

Type Visibility Source Unit Parent
property published
Web.HTTPApp.pas
Web.HTTPApp.hpp
Web.HTTPApp TWebActionItem

Description

Identifies an individual action item when it is referenced from other objects.

Use Name to uniquely specify an individual action item in code anywhere in the application. For action items, Name is equivalent to the DisplayName property. Therefore, when setting the Name property, the new value must not match the DisplayName of any other action item in the list maintained by TCustomWebDispatcher. Trying to set the Name to a DisplayName that is already in use raises an exception.

See Also