Smrf.NodeXL.Visualization.Wpf.GraphImageScaler.GraphImageScaler C# (CSharp) Method

GraphImageScaler() public method

Initializes a new instance of the GraphImageScaler class.
public GraphImageScaler ( NodeXLControl nodeXLControl ) : System
nodeXLControl NodeXLControl /// The control for which a graph image will be created. ///
return System
    public GraphImageScaler
    (
        NodeXLControl nodeXLControl
    )
    {
        Debug.Assert(nodeXLControl != null);

        m_oNodeXLControl = nodeXLControl;
        m_dOriginalGraphScale = 0;
        m_dOriginalGroupLabelScale = 0;

        AssertValid();
    }