Xceed Grid for WinForms v4.3 Documentation
Xceed.Grid.v4.3 Assembly / Xceed.Grid.Editors Namespace / GettingEditorControlValueEventArgs Class / GettingEditorControlValueEventArgs Constructor
The System.Windows.Forms.Control used to edit the cell's content.
The Xceed.Grid.Cell currently being edited.
The datatype of the cellValue.
The CellEditorEventArgs.Cell's value.


In This Topic
    GettingEditorControlValueEventArgs Constructor
    In This Topic
    Initializes a new instance of the CellEditorEventArgs class specifying the Xceed.Grid.Cell currently being edited, System.Windows.Forms.Control used to edit the cell's content, as well as the cell's value and its datatype.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal control As Control, _
       ByVal cell As Cell, _
       ByVal valueDataType As Type, _
       ByVal cellValue As Object _
    )
    'Usage
     
    Dim control As Control
    Dim cell As Cell
    Dim valueDataType As Type
    Dim cellValue As Object
     
    Dim instance As New GettingEditorControlValueEventArgs(control, cell, valueDataType, cellValue)
    public GettingEditorControlValueEventArgs( 
       Control control,
       Cell cell,
       Type valueDataType,
       object cellValue
    )

    Parameters

    control
    The System.Windows.Forms.Control used to edit the cell's content.
    cell
    The Xceed.Grid.Cell currently being edited.
    valueDataType
    The datatype of the cellValue.
    cellValue
    The CellEditorEventArgs.Cell's value.
    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