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 Hideable property determines if the user can close a bottom sliding window with a touch gesture.
Remark: The bottom sliding window can still be closed programmatically, using the WinSlidingVisible function.
Example
MyBottomSlidingWindow.InternalWindow = "IW_Sliding_menu"
MyBottomSlidingWindow.HeightCollapsed = 58 // Value in pixels
MyBottomSlidingWindow.HeightHalfExpanded = swFitToContent
MyBottomSlidingWindow.HeightExpanded = 0.9 // 90%
MyBottomSlidingWindow.Modal = True
MyBottomSlidingWindow.Hideable = True
MyBottomSlidingWindow.RoundedCorner = False
// Opens the bottom sliding window
WinSlidingVisible(swBottom, swHalfExpanded)
Syntax

Checking if the user can close the bottom sliding window with a touch gesture Hide the details

<Result> = <Sliding window>.Hideable
<Result>: Boolean
  • True if the user can close the bottom sliding window with a touch gesture,
  • False otherwise.
<Sliding window>: MyBottomSlidingWindow
MyBottomSlidingWindow keyword corresponding to the bottom sliding window defined for the current window.

Allowing or preventing the user from closing the bottom sliding window with a touch gesture Hide the details

<Sliding window>.Hideable = <New value>
<Sliding window>: MyBottomSlidingWindow
MyBottomSlidingWindow keyword corresponding to the bottom sliding window defined for the current window.
<New value>: Boolean
  • True if the user can close the bottom sliding window with a touch gesture,
  • False otherwise.
Minimum version required
  • Version 2024
Comments
Click [Add] to post a comment

Last update: 02/07/2024

Send a report | Local help