|
|
|
|
WinGiveSuitableHeight (Function) In french: FenDonneHauteurAdaptée Returns the height of a window, adapted to the content of controls.
// Displays the Table control TableDisplay(WIN_Price.TABLE_Price) // Calculates the proper height nHeightOK is int nHeightOK = WinGiveSuitableHeight(WIN_Price) // Resizes the window IF nHeightOK < 500 THEN WIN_Price..Height = nHeightOK ELSE WIN_Price..Height = 500 END
Syntax
<Result> = WinGiveSuitableHeight([<Window>])
<Result>: Integer Height adapted to the content of controls for optimizing the display of controls in the window. This height is expressed in pixels. <Window>: Optional window name Name of the window to be used. The current window will be used if this parameter is not specified. Remarks The calculation of the adapted height of a window is possible only if the window contains one of the following controls anchored in height: - List Box control,
- Table control,
- Looper control,
- TreeView control,
- ListView control,
- Multiline edit control.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|