Provides event information for the TaskPane.GraphLaidOut and ThisWorkbook.GraphLaidOut events.
Inheritance: GraphRectangleEventArgs
Ejemplo n.º 1
0
        ThisWorkbook_GraphLaidOut
        (
            Object sender,
            GraphLaidOutEventArgs e
        )
        {
            Debug.Assert(e != null);
            AssertValid();

            SetLocationsOfCollapsedGroups(e);
        }
Ejemplo n.º 2
0
        ThisWorkbook_GraphLaidOut
        (
            Object sender,
            GraphLaidOutEventArgs e
        )
        {
            Debug.Assert(e != null);
            AssertValid();

            if (m_oSheets1And2Helper.TableExists)
            {
                m_oSheets1And2Helper.SetLocations <
                    KeyValuePair <Int32, IIdentityProvider> >(
                    e.VertexIDDictionary, e.GraphRectangle,
                    VertexTableColumnNames.X,
                    VertexTableColumnNames.Y,
                    VertexTableColumnNames.Locked,

                    new TryGetRowIDAndLocation <
                        KeyValuePair <Int32, IIdentityProvider> >(
                        this.TryGetRowIDAndLocation)
                    );
            }
        }
Ejemplo n.º 3
0
    ThisWorkbook_GraphLaidOut
    (
        Object sender,
        GraphLaidOutEventArgs e
    )
    {
        Debug.Assert(e != null);
        AssertValid();

        if (m_oSheets1And2Helper.TableExists)
        {
            m_oSheets1And2Helper.SetLocations<
                KeyValuePair<Int32, IIdentityProvider> >(
                e.VertexIDDictionary, e.GraphRectangle,
                VertexTableColumnNames.X,
                VertexTableColumnNames.Y,
                VertexTableColumnNames.Locked,

                new TryGetRowIDAndLocation<
                    KeyValuePair<Int32, IIdentityProvider> >(
                    this.TryGetRowIDAndLocation)
                );
        }
    }
Ejemplo n.º 4
0
    ThisWorkbook_GraphLaidOut
    (
        Object sender,
        GraphLaidOutEventArgs e
    )
    {
        Debug.Assert(e != null);
        AssertValid();

        SetLocationsOfCollapsedGroups(e);
    }