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

RequestVertexCommandEnableEventArgs() public method

Initializes a new instance of the class.
public RequestVertexCommandEnableEventArgs ( Int32 vertexRowID ) : System
vertexRowID System.Int32 /// Row ID of the vertex that was right-clicked in the vertex table in the /// vertex worksheet, or /// if a vertex wasn't right-clicked. This is a row ID that is stored in /// the worksheet, NOT an IEdge.ID value. ///
return System
    public RequestVertexCommandEnableEventArgs
    (
        Int32 vertexRowID
    )
    {
        m_iVertexRowID = vertexRowID;
        m_bEnableSelectAllVertices = false;
        m_bEnableDeselectAllVertices = false;
        m_bEnableSelectAdjacentVertices = false;
        m_bEnableDeselectAdjacentVertices = false;
        m_bEnableSelectIncidentEdges = false;
        m_bEnableDeselectIncidentEdges = false;
        m_bEnableEditVertexAttributes = false;
        m_bEnableSelectSubgraphs = false;

        AssertValid();
    }
RequestVertexCommandEnableEventArgs