Unit 'MUIClass.Group' Package
[Overview][Classes][Index] [#MUIClass]

TMUIRegister.Titles

Array of Strings defining the Names for the Register.

Declaration

Source position: MUIClass.Group.pas line 127

published property TMUIRegister.Titles : TStringArray
  read FTitles
  write SetTitles;

Description

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;

Documentation generated on: 2024-03-28