ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

New WINDEV Mobile 2024 feature!
Help / WLanguage / WLanguage properties / Properties associated with windows, pages and controls
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
The HeightExpanded property gets and sets the "expanded" height of the bottom sliding window associated with the current window.
Example
MyBottomSlidingWindow.HeightCollapsed = 58 // Value in pixels
MyBottomSlidingWindow.HeightHalfExpanded = swFitToContent
MyBottomSlidingWindow.HeightExpanded = 0.9 // 90%
// Opens the bottom sliding window
WinSlidingVisible(swBottom, swHalfExpanded)
Syntax

Getting the "extended" height of a bottom sliding window Hide the details

<Result> = <Sliding window>.HeightExpanded
<Result>: Integer or Integer constant
  • Value greater than 1: Height (in pixels) of the bottom sliding window, when expanded.
  • Value between 0 and 1: Screen height percentage.
  • Negative Value: Constant used to define the "extended" height of the bottom sliding window:
    swDisabledThe extended mode of bottom sliding windows is disabled.
    swFitToContentThe height in extended mode corresponds to the height of the internal window.
    swSysMediumThe height in extended mode is half the height of the host window.
<Sliding window>: MyBottomSlidingWindow
MyBottomSlidingWindow keyword corresponding to the bottom sliding window defined for the current window.

Setting the "extended" height of a bottom sliding window Hide the details

<Sliding window>.HeightExpanded = <New extended height>
<Sliding window>: MyBottomSlidingWindow
MyBottomSlidingWindow keyword corresponding to the bottom sliding window defined for the current window.
<New extended height>: Integer or Integer constant
New extended height for bottom sliding windows. This height can correspond to:
  • a number of pixels.
  • a percentage of the maximum height (integer between 0 and 1),
  • one of the following constants:
    swDisabledThe extended mode of bottom sliding windows is disabled.
    swFitToContentThe height in extended mode corresponds to the height of the internal window.
    swSysMediumThe height in extended mode is half the height of the host window.
Minimum version required
  • Version 2024
Comments
Click [Add] to post a comment

Last update: 03/01/2024

Send a report | Local help