Provides event information for the TaskPane.GraphLaidOut and ThisWorkbook.GraphLaidOut events.
Inheritance: GraphRectangleEventArgs
コード例 #1
0
ファイル: Sheet5.cs プロジェクト: yesbb12/ParallelBFS
        ThisWorkbook_GraphLaidOut
        (
            Object sender,
            GraphLaidOutEventArgs e
        )
        {
            Debug.Assert(e != null);
            AssertValid();

            SetLocationsOfCollapsedGroups(e);
        }
コード例 #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)
                    );
            }
        }
コード例 #3
0
ファイル: Sheet2.cs プロジェクト: 2014-sed-team3/term-project
    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)
                );
        }
    }
コード例 #4
0
ファイル: Sheet5.cs プロジェクト: 2014-sed-team3/term-project
    ThisWorkbook_GraphLaidOut
    (
        Object sender,
        GraphLaidOutEventArgs e
    )
    {
        Debug.Assert(e != null);
        AssertValid();

        SetLocationsOfCollapsedGroups(e);
    }