Xceed Grid for WinForms v4.3 Documentation
Xceed.Grid.v4.3 Assembly / Xceed.Grid Namespace / ColumnRemovedEventArgs Class / ColumnRemovedEventArgs Constructor
A reference to the Column that was removed from the grid.
The zero-based index at which the column was removed.


In This Topic
    ColumnRemovedEventArgs Constructor
    In This Topic
    Initializes a new instance of the ColumnRemovedEventArgs class.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal column As Column, _
       ByVal index As Integer _
    )
    'Usage
     
    Dim column As Column
    Dim index As Integer
     
    Dim instance As New ColumnRemovedEventArgs(column, index)
    public ColumnRemovedEventArgs( 
       Column column,
       int index
    )

    Parameters

    column
    A reference to the Column that was removed from the grid.
    index
    The zero-based index at which the column was removed.
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also