[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Gets an enumerator for actions in the action list.
Source position: actnlist.pas line 108
public function TCustomActionList.GetEnumerator: TActionListEnumerator; |
TActionListEnumerator instance for the class.
Gets a TActionListEnumerator instance used to access values in the Actions property. It allows access to the values in the list using FOR..IN syntax. For example:
// var // AnAction: TBasicAction; // AList: TActionList; // ... begin for AnAction in AList do SomethingWith(AnAction); end;
|
Provides indexed access to actions in the list by their ordinal position. |
|
|
Implements an enumerator for the Actions in TCustomActionList. |
Version 4.0 | Generated 2025-05-03 | Home |