Class TUIControlList
Unit
CastleUIControls
Declaration
type TUIControlList = class(TCastleObjectList)
Description
no description available, TCastleObjectList description follows
Extended TObjectList for Castle Game Engine.
Hierarchy
Overview
Methods
Properties
Description
Methods
 |
procedure Insert(Index: Integer; Item: TUIControl); |
|
 |
procedure InsertFront(const NewItem: TUIControl); |
Add at the beginning of the list. This is just a shortcut for Insert(0, NewItem) , but makes it easy to remember that controls at the beginning of the list are in front (they get key/mouse events first).
|
 |
procedure InsertBack(const NewItem: TUIControl); |
Add at the end of the list. This is just another name for Add(NewItem) , but makes it easy to remember that controls at the end of the list are at the back (they get key/mouse events last).
|
 |
procedure EndDisableContextOpenClose; |
|
Properties
 |
property Items[I:Integer]: TUIControl read GetItem write SetItem; |
|
Generated by PasDoc 0.13.0 on 2014-04-30 22:06:45
|