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 RoundedCorner property allows you to determine whether the bottom sliding window associated with the current window has rounded corners.
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

Finding out if the sliding window has rounded corners Hide the details

<Result> = <Sliding window>.RoundedCorner
<Result>: Boolean
  • True if the bottom sliding window is displayed with rounded corners,
  • False otherwise.
<Sliding window>: MyBottomSlidingWindow
MyBottomSlidingWindow keyword corresponding to the bottom sliding window defined for the current window.

Defining whether the sliding window should have rounded corners Hide the details

<Sliding window>.RoundedCorner = <New value>
<Sliding window>: MyBottomSlidingWindow
MyBottomSlidingWindow keyword corresponding to the bottom sliding window defined for the current window.
<New value>: Boolean
  • True if the bottom sliding window should be displayed with rounded corners,
  • False otherwise.
Remarks
  • On iPhone and Android devices, only the top corners are rounded.
  • On iPad, all four corners are rounded.
Minimum version required
  • Version 2024
Comments
Click [Add] to post a comment

Last update: 02/07/2024

Send a report | Local help