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 Modal property determines whether the bottom sliding window associated with the current current window is modal or modeless.
Remark: If the bottom sliding window is modal, the host window will be inaccessible: it will be grayed out by the Dim Disabled Windows mechanism (DDW).
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

Check if the bottom sliding window is modal Hide the details

<Result> = <Sliding window>.Modal
<Result>: Boolean
  • True if the bottom sliding window is modal,
  • False otherwise.
<Sliding window>: MyBottomSlidingWindow
MyBottomSlidingWindow keyword corresponding to the bottom sliding window defined for the current window.

Making the bottom sliding window modal or modeless Hide the details

<Sliding window>.Modal = <New value>
<Sliding window>: MyBottomSlidingWindow
MyBottomSlidingWindow keyword corresponding to the bottom sliding window defined for the current window.
<New value>: Boolean
  • True to make the bottom sliding window modal,
  • False otherwise.
Minimum version required
  • Version 2024
Comments
Click [Add] to post a comment

Last update: 02/07/2024

Send a report | Local help