Xceed Grid for WinForms v4.3 Documentation
Xceed.Grid.v4.3 Assembly / Xceed.Grid.Editors Namespace / ValidatingEditorEventArgs Class / ValidatingEditorEventArgs Constructor
The System.Windows.Forms.Control that will be used to edit the content of the cell.
The Xceed.Grid.Cell whose content is to be edited by the control.
true if the value is valid; false otherwise.


    ValidatingEditorEventArgs Constructor
    Initializes a new instance of the ValidatingEditorEventArgs class specifying the cell to be edited, the control used to edit the cell's content, and a boolean value indicating if the editor's value is valid.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal control As Control, _
       ByVal cell As Cell, _
       ByVal valid As Boolean _
    )
     
    'Usage
     
    Dim control As Control
    Dim cell As Cell
    Dim valid As Boolean
     
    Dim instance As New ValidatingEditorEventArgs(control, cell, valid)

    Parameters

    control
    The System.Windows.Forms.Control that will be used to edit the content of the cell.
    cell
    The Xceed.Grid.Cell whose content is to be edited by the control.
    valid
    true if the value is valid; false otherwise.
    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