Xceed Grid for WinForms v4.3 Documentation
Xceed.Grid.v4.3 Assembly / Xceed.Grid.Editors Namespace / QueryEditorBoundsEventArgs Class / QueryEditorBoundsEventArgs Constructor
The System.Windows.Forms.Control used to edit the cell's content.
The Xceed.Grid.Cell to edit.
A System.Drawing.Rectangle structure representing the bounds of the editor.


In This Topic
    QueryEditorBoundsEventArgs Constructor
    In This Topic
    Initializes a new instance of the QueryEditorBoundsEventArgs class specifying the cell to be edited, the control used to edit the cell's content, as well as various information required to calculate the editor's bounds.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal control As Control, _
       ByVal cell As Cell, _
       ByVal bounds As Rectangle _
    )
    'Usage
     
    Dim control As Control
    Dim cell As Cell
    Dim bounds As Rectangle
     
    Dim instance As New QueryEditorBoundsEventArgs(control, cell, bounds)
    public QueryEditorBoundsEventArgs( 
       Control control,
       Cell cell,
       Rectangle bounds
    )

    Parameters

    control
    The System.Windows.Forms.Control used to edit the cell's content.
    cell
    The Xceed.Grid.Cell to edit.
    bounds
    A System.Drawing.Rectangle structure representing the bounds of the editor.
    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