BrightIdeasSoftware.ObjectListView.TriggerGroupExpandCollapse C# (CSharp) Méthode

TriggerGroupExpandCollapse() protected méthode

Trigger a GroupExpandCollapse event and return true if the action was cancelled
protected TriggerGroupExpandCollapse ( OLVGroup group ) : bool
group OLVGroup
Résultat bool
        protected virtual bool TriggerGroupExpandCollapse(OLVGroup group)
        {
            GroupExpandingCollapsingEventArgs args = new GroupExpandingCollapsingEventArgs(group);
            this.OnGroupExpandingCollapsing(args);
            return args.Canceled;
        }
ObjectListView