BrightIdeasSoftware.ObjectListView.TriggerGroupExpandCollapse C# (CSharp) 메소드

TriggerGroupExpandCollapse() 보호된 메소드

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