MonoReports.Model.Report.RemoveGroup C# (CSharp) Méthode

RemoveGroup() public méthode

public RemoveGroup ( Group gr ) : void
gr Group
Résultat void
        public void RemoveGroup(Group gr)
        {
            int index = Groups.IndexOf (gr);
            if (index != -1) {
                Groups.RemoveAt (index);
                GroupHeaderSections.RemoveAt (index);
                GroupFooterSections.RemoveAt (index);
            }
        }