Smrf.NodeXL.ExcelTemplate.RunCollapseOrExpandGroupsCommandEventArgs.RunCollapseOrExpandGroupsCommandEventArgs C# (CSharp) Method

RunCollapseOrExpandGroupsCommandEventArgs() public method

Initializes a new instance of the class.
public RunCollapseOrExpandGroupsCommandEventArgs ( System.Boolean collapse, ICollection groupNames ) : System
collapse System.Boolean /// true to collapse the groups, false to expand them. ///
groupNames ICollection /// Collection of group names, one for each group that needs to be /// collapsed or expanded. ///
return System
    public RunCollapseOrExpandGroupsCommandEventArgs
    (
        Boolean collapse,
        ICollection<String> groupNames
    )
    {
        m_bCollapse = collapse;
        m_oGroupNames = groupNames;

        AssertValid();
    }
RunCollapseOrExpandGroupsCommandEventArgs