[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
[Properties (by Name)] [Methods (by Name)] [Events (by Name)]
Implements an enumerator for the Actions in TCustomActionList.
Source position: actnlist.pas line 59
type TActionListEnumerator = class |
||
public |
||
constructor Create(); |
|
Constructor for the class instance. |
function MoveNext; |
|
Moves to the next value for the enumerator. |
property Current: TContainedAction; [r] |
|
Current value for the enumerator. |
end; |
|
Implements an enumerator for the Actions in TCustomActionList. |
|
| | ||
TObject |
TActionListEnumerator implements an enumerator for TContainedAction values stored in TCustomActionList. It allows navigation of values in the Actions property using the "for .. in" loop syntax. TActionListEnumerator is the type returned from the TCustomActionList.GetEnumerator method.
|
Gets an enumerator for the action list. |
|
|
The indexed list of actions. |
|
|
Implements an Action class which has a category and parent action list. |