System.Actions.TContainedAction.Index

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Index: Integer read GetIndex write SetIndex stored False;

C++

__property int Index = {read=GetIndex, write=SetIndex, stored=false, nodefault};

Properties

Type Visibility Source Unit Parent
property public
System.Actions.pas
System.Actions.hpp
System.Actions TContainedAction

Description

Specifies the index of the action in its action list.

Index indicates the position of the action in its action list. You can change the action's Index at design time using one of the IDE editors to handle actions.

The index of actions determines the order in which they appear in user interface elements such as menus and tool bars.

Index is zero-based. When Index is -1, this means that the ActionList property does not contain any list.

See Also