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 HeightHalfExpanded property gets and sets the "half-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 "half-extended" height of a bottom sliding window Hide the details

<Result> = <Sliding window>.HeightHalfExpanded
<Result>: Integer or Integer constant
  • Value greater than 1: Height (in pixels) of the bottom sliding window, when half-expanded.
  • Value between 0 and 1: Screen height percentage.
  • Negative Value: Constant used to define the "half-extended" height of the bottom sliding window:
    swDisabledThe half-extended mode of bottom sliding windows is disabled.
    swFitToContentThe height in half-extended mode corresponds to the height of the internal window.
    swSysMediumThe height in half-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 "half-extended" height of a bottom sliding window Hide the details

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

Last update: 02/07/2024

Send a report | Local help