Xceed Grid for WinForms v4.3 Documentation
QueryEditorBounds Event


Xceed.Grid.v4.3 Assembly > Xceed.Grid.Editors Namespace > CellEditorManager Class : QueryEditorBounds Event
Raised when calculating the bounds of the editor.
Syntax
'Declaration
 
<DescriptionAttribute("Raised when calculating the bounds of the editor.")>
<CategoryAttribute("Appearance")>
Public Event QueryEditorBounds As QueryEditorBoundsEventHandler
'Usage
 
Dim instance As CellEditorManager
Dim handler As QueryEditorBoundsEventHandler
 
AddHandler instance.QueryEditorBounds, handler
[Description("Raised when calculating the bounds of the editor.")]
[Category("Appearance")]
public event QueryEditorBoundsEventHandler QueryEditorBounds
Event Data

The event handler receives an argument of type QueryEditorBoundsEventArgs containing data related to this event. The following QueryEditorBoundsEventArgs properties provide information specific to this event.

PropertyDescription
Gets or sets the bounds to the editor.  
Gets the Xceed.Grid.Cell being edited. (Inherited from Xceed.Grid.Editors.CellEditorEventArgs)
Gets the Control used to edit the cell's content. (Inherited from Xceed.Grid.Editors.CellEditorEventArgs)
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