const
NewSectionName = 'REDTITLE';
begin
// Add a new Common Skin Section
sSkinManager1.CommonSections.Add('[' + NewSectionName + ']');
sSkinManager1.CommonSections.Add('HOTTRANSPARENCY=0');
sSkinManager1.CommonSections.Add('TRANSPARENCY=0');
sSkinManager1.CommonSections.Add('HOTCOLOR=255');
sSkinManager1.CommonSections.Add('COLOR=255');
// Reinit skin data
sSkinManager1.SkinName := sSkinManager1.SkinName;
// Change a title section
sSkinProvider1.TitleSkin := NewSectionName;
// Update internal data. This line will not be required in the AlphaControls 7.62 and newer
SendAMessage(sSkinProvider1.Form.Handle, AC_SETNEWSKIN, longword(sSkinManager1));
end;