Window.MinMaxInfo Method | |
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:
VO
Assembly:
VOGUIClasses (in VOGUIClasses.dll) Version: 2.19
Syntax VIRTUAL METHOD MinMaxInfo(
oMinMaxInfoEvent
) AS USUAL CLIPPER
[ClipperCallingConventionAttribute(new string[] { ... })]
public virtual Usual MinMaxInfo(
Usual oMinMaxInfoEvent = default
)
Request Example
View SourceParameters
- oMinMaxInfoEvent (Optional)
- Type: Usual
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.
Return Value
Type:
UsualRemarks 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