'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.
Property | Description |
---|---|
Bounds | Gets or sets the bounds to the editor. |
Cell | Gets the Xceed.Grid.Cell being edited. (Inherited from Xceed.Grid.Editors.CellEditorEventArgs) |
Control | 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