ASPxClientPopupControlBase.Resize Event
In This Article
Occurs on the client side after a window has been resized.
#Declaration
TypeScript
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 |
---|---|
resize |
Returns the value indicating the window state after resizing. |
window |
Gets the popup window object related to the event.
Inherited from ASPx |
#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