ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

The content of this page has been updated to version 2024.  See documentation 2024 now.
Help / WLanguage / WLanguage functions / Controls, pages and windows / Window management functions
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
WinSlidingVisible (Function)
In french: FenCoulissanteVisible
Displays or hides a sliding window (sliding menu).
Example
// Click on MENU_Visible
WinSlidingVisible(swLeft, True)
 
// Click on Close_the_menu
WinSlidingVisible(swLeft, False)
MyLeftSlidingWindow.ConnectAfter(False)
WinSlidingVisible(swLeft, True)
Syntax

Making a sliding window visible or not Hide the details

WinSlidingVisible(<Sliding window> , <New status>)
<Sliding window>: Integer constant
Sliding window to use. This sliding window is defined in the description window of the main window:
swLeftThe sliding window on the left is used.
swRightThe sliding window on the right is used.
<New status>: Boolean
  • True to make the sliding window visible,
  • False to make the sliding window invisible.

Finding out whether a sliding window is visible or not Hide the details

<Result> = WinSlidingVisible(<Sliding window>)
<Result>: Boolean
  • True if the sliding window is visible.
  • False if the sliding window is invisible.
<Sliding window>: Integer constant
Sliding window to use. This sliding window is defined in the description window of the main window:
swLeftThe sliding window on the left is used.
swRightThe sliding window on the right is used.
Remarks
  • The sliding window must have been defined beforehand in the window editor (description window of the main window).
  • By default, the sliding windows are displayed during a scroll gesture performed on the right or left border of the window. If this operating mode is disabled in the editor, this function is used to open the sliding windows via a button for example.
  • A call to Close in the internal window displayed in a sliding window closes both the parent window AND the sliding window.
Related Examples:
WM System Cross-platform examples (WINDEV Mobile): WM System
[ + ] This application is an example of some of the features of WINDEV Mobile available for Android/iOS.
The following system functions are used:
- NFC
- Multimedia control
- Brightness
- Volume
- Wi-Fi
- Bluetooth
- Toast
- Compass
- Accelerometer
- Camera control
- LED
- Vibration
- Notifications
- Drawing functions
- Internet
WM FTP Client Cross-platform examples (WINDEV Mobile): WM FTP Client
[ + ] This example is an FTP Client for Android and iOS.
It explains how to interact with an FTP server via the FTP functions of WLanguage.
It is used to:
- Rename files
- Delete files
- Create folders
- Download files
- Send files to the server
Component: wd270android.aar
Minimum version required
  • Version 19
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help