|
|
|
|
|
RoundedCorner (Property) In french: CoinArrondi
The RoundedCorner property allows you to determine whether the bottom sliding window associated with the current window has rounded corners.
MyBottomSlidingWindow.InternalWindow = "IW_Sliding_menu"
MyBottomSlidingWindow.HeightCollapsed = 58
MyBottomSlidingWindow.HeightHalfExpanded = swFitToContent
MyBottomSlidingWindow.HeightExpanded = 0.9
MyBottomSlidingWindow.Modal = True
MyBottomSlidingWindow.Hideable = True
MyBottomSlidingWindow.RoundedCorner = False
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.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|