Smrf.NodeXL.Visualization.Wpf.NodeXLControl.FireGraphLaidOut C# (CSharp) Method

FireGraphLaidOut() protected method

protected FireGraphLaidOut ( AsyncCompletedEventArgs oAsyncCompletedEventArgs ) : void
oAsyncCompletedEventArgs System.ComponentModel.AsyncCompletedEventArgs
return void
    FireGraphLaidOut
    (
        AsyncCompletedEventArgs oAsyncCompletedEventArgs
    )
    {
        Debug.Assert(oAsyncCompletedEventArgs != null);
        AssertValid();

        AsyncCompletedEventHandler oGraphLaidOut = this.GraphLaidOut;

        if (oGraphLaidOut != null)
        {
            oGraphLaidOut(this, oAsyncCompletedEventArgs);
        }
    }
NodeXLControl