Array of Strings defining the Names for the Register.
Source position: MUIClass.Group.pas line 130
published property TMUIRegister.Titles : TStringArray |
Array of strings describing the titles of your groups children. This array must contain exactly as many as entries as your group has children.
Example:
Reg := TMUIRegister.create; with Reg do begin Titles := ['Eyes', 'Ears', 'Noses', 'Feet']; Parent := in end; EyeGroup.Parent := Reg; EarsGroup.Parent := Reg; NosesGroup.Parent := Reg; FeetGroup.Parent := Reg;