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

VerticesMovedEventArgs2() public method

Initializes a new instance of the class.
public VerticesMovedEventArgs2 ( ICollection verticesAndRowIDs, Rectangle graphRectangle, NodeXLControl nodeXLControl ) : System
verticesAndRowIDs ICollection /// Collection of objects, one for each /// vertex that was moved. ///
graphRectangle System.Drawing.Rectangle /// The rectangle the graph was drawn within. ///
nodeXLControl Smrf.NodeXL.Visualization.Wpf.NodeXLControl /// The control in which the graph was drawn. ///
return System
    public VerticesMovedEventArgs2
    (
        ICollection<VertexAndRowID> verticesAndRowIDs,
        Rectangle graphRectangle,
        NodeXLControl nodeXLControl
    )
    :
    base(graphRectangle, nodeXLControl)
    {
        m_oVerticesAndRowIDs = verticesAndRowIDs;

        AssertValid();
    }