Provides event information for events that involve the graph rectangle and the NodeXLControl.
Inheritance: System.EventArgs
Esempio n. 1
0
        SetLocationsOfCollapsedGroups
        (
            GraphRectangleEventArgs e
        )
        {
            Debug.Assert(e != null);
            AssertValid();

            if (m_oSheetHelper.TableExists)
            {
                m_oSheetHelper.SetLocations <KeyValuePair <String, IVertex> >(
                    e.NodeXLControl.CollapsedGroups, e.GraphRectangle,
                    GroupTableColumnNames.CollapsedX,
                    GroupTableColumnNames.CollapsedY,
                    null,

                    new TryGetRowIDAndLocation <KeyValuePair <String, IVertex> >(
                        this.TryGetRowIDAndLocation)
                    );
            }
        }
Esempio n. 2
0
    SetLocationsOfCollapsedGroups
    (
        GraphRectangleEventArgs e
    )
    {
        Debug.Assert(e != null);
        AssertValid();

        if (m_oSheetHelper.TableExists)
        {
            m_oSheetHelper.SetLocations< KeyValuePair<String, IVertex> >(
                e.NodeXLControl.CollapsedGroups, e.GraphRectangle,
                GroupTableColumnNames.CollapsedX,
                GroupTableColumnNames.CollapsedY,
                null,

                new TryGetRowIDAndLocation<KeyValuePair<String, IVertex>>(
                    this.TryGetRowIDAndLocation)
                );
        }
    }