[i] Entries shall be displayed in your cycle gadget.
Source position: MUIClass.Group.pas line 231
published property TMUICycle.Entries : TStringArray |
Remember that cycle gadget entries may contain any text formatting code such as bold, italic or underlined characters.
Cycle gadgets set the preparse string for all entries to #27'c', this means that they will automatically appear centered. Of course you can override this by simply preceding your entries with own formatting code.
Example:
CYTitle := TMUICycle.Create; with CYTitle do begin Entries := ['normal', 'highlight', '3-dimensional']; OnActiveChange := @CycleEvent; Parent := in end;