'Declaration <DescriptionAttribute("Raised when calculating the bounds of the control.")> <CategoryAttribute("Appearance")> Public Event QueryControlBounds As QueryViewerControlBoundsEventHandler
'Usage Dim instance As CellViewerManager Dim handler As QueryViewerControlBoundsEventHandler AddHandler instance.QueryControlBounds, handler
[Description("Raised when calculating the bounds of the control.")] [Category("Appearance")] public event QueryViewerControlBoundsEventHandler QueryControlBounds
Event Data
The event handler receives an argument of type QueryViewerControlBoundsEventArgs containing data related to this event. The following QueryViewerControlBoundsEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Bounds | Gets or sets the bounds to the control. |
Cell | Gets the Xceed.Grid.Cell whose content is being displayed. (Inherited from Xceed.Grid.Viewers.CellViewerEventArgs) |
Control | Gets the System.Windows.Forms.Control used to view the content of the Cell. (Inherited from Xceed.Grid.Viewers.CellViewerEventArgs) |
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