HotXLS-dokumentaatio

GroupFields ominaisuus

Määrittää a list of field names used as the criteria for creating groups. Read/write TStrings

Syntaksi

property GroupFields: TStrings;

Esimerkki

This example changes the list of group fields

With DataToXLS1.GroupFields do
begin
   Clear();
   Add('Country');
   Add('CompanyName');
end;