FMX.ActnList.TActionList.Name

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Name: TComponentName read FName write SetName stored False default 0;

C++

__property Name = {default=0};

Properties

Type Visibility Source Unit Parent
property published
FMX.ActnList.pas
FMX.ActnList.hpp
FMX.ActnList TActionList

Description

Specifies the name of the component as referenced in code.

FMX.ActnList.TActionList.Name inherits from System.Classes.TComponent.Name. All content below this line refers to System.Classes.TComponent.Name.

Specifies the name of the component as referenced in code.

Use Name to change the name of a component to reflect its purpose in the current application. By default, the IDE assigns sequential names based on the type of the component, such as 'Button1', 'Button2', and so on.

Use Name to refer to the component in code.

Warning: Changing Name at run time causes any references to the old name to become undefined. Any subsequent code that uses the old name will cause an exception.

See Also


Code Examples