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

ExcelTemplateGroupInfo() public method

Initializes a new instance of the ExcelTemplateGroupInfo class.
public ExcelTemplateGroupInfo ( String name, Nullable rowID, Color vertexColor, VertexShape vertexShape, System.Boolean isCollapsed, String collapsedAttributes ) : System
name String /// The unique name of the group. ///
rowID Nullable /// The group's row ID in the group worksheet, or null if an ID isn't /// available. ///
vertexColor Color /// The color to use for each of the group's vertices. ///
vertexShape VertexShape /// The shape to use for each of the group's vertices. ///
isCollapsed System.Boolean /// true if the group should be collapsed. ///
collapsedAttributes String /// String containing the attributes describing what the group should look /// like when it is collapsed, or null to give the collapsed group a /// default appearance. If not null, this should be a string that was /// returned by . ///
return System
    public ExcelTemplateGroupInfo
    (
        String name,
        Nullable<Int32> rowID,
        Color vertexColor,
        VertexShape vertexShape,
        Boolean isCollapsed,
        String collapsedAttributes
    )
    : base(name, isCollapsed, collapsedAttributes)
    {
        Debug.Assert( !String.IsNullOrEmpty(name) );

        m_iRowID = rowID;
        m_oVertexColor = vertexColor;
        m_eVertexShape = vertexShape;

        AssertValid();
    }