Skip to main content
A newer version of this page is available. .

ASPxClientPopupControlBase.Resize Event

Occurs on the client side after a window has been resized.

Declaration

Resize: ASPxClientEvent<ASPxClientPopupWindowResizeEventHandler<ASPxClientPopupControlBase>>

Event Data

The Resize event's data class is ASPxClientPopupWindowResizeEventArgs. The following properties provide information specific to this event:

Property Description
resizeState Returns the value indicating the window state after resizing.
window Gets the popup window object related to the event. Inherited from ASPxClientPopupWindowEventArgs.

Remarks

Handle the Resize event to respond to a window resizing. You can use the ASPxClientPopupWindowEventArgs.window event argument property to determine the resized window. Note, that if the default popup window is resized, the window property returns null. The ASPxClientPopupWindowResizeEventArgs.resizeState property allows you to determine the window state after resizing. The available window states are listed in the ASPxClientPopupControlResizeState class.

See Also