Click or drag to resize

Window.MinMaxInfo Method (Typed)

X#
Provide a method that is invoked when the size or position of a window is about to change (cf WM_GETMINMAXINFO in Win API).

Namespace:  XSharp.VO.SDK
Assembly:  XSharp.VOGUIClasses (in XSharp.VOGUIClasses.dll) Version: 2.19
Syntax
 VIRTUAL METHOD MinMaxInfo(
	oMinMaxInfoEvent AS MinMaxInfoEvent
) AS VOID
Request Example View Source

Parameters

oMinMaxInfoEvent
Type: MinMaxInfoEvent
The MinMaxInfoEvent object that describes the maximised width, height and position of the maximised window in addition to the minimum and maximum height and width of the window.
Remarks
Tip Tip
Important! This is a callback method used by X#. Normally, it should not be called in your application code.
The default implementation of this method sets the MinTrackSize property of the MinMaxInfoEvent event to the minsize of the window.
See Also