Terminates InitChange state.
Source position: MUIClass.Group.pas line 49
public procedure TMUIGroup.ExitChange; override; |
Example:
Group.InitChange; // Prepare Group to add/remove items Text1.Parent := nil; // remove Text1 from the group String1.Parent := Group; // remove String1 from the group PopButton.Parent := Group; // remove PopButton from the group Group.ExitChange; // Finished altering items
|
Prepares a group for dynamic adding/removing of objects. |