ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Version: 2025

Composite variable
A composite variable contains different types of elements (members)...
Declaring and using a variable
A variable is defined by name and type...
Checkers available in the code editor
The code editor proposes several tools used to correct the code...
Assignment operators
Three assignment operators are available...
Code style
A code style is used to automatically prefix the name of all the variables and project elements (windows, report controls, classes, etc.
IsNumeric (Function)
Enables you to find out whether a variable or a control is:
  • a numeric (integer, real, currency or numeric).
  • a string that can be converted into numeric.
Constant
The constants are language elements whose value is fixed once and for all...
Type inference
The type inference is used to simplify the declaration of variables when the variable type can be automatically deduced by the compiler...
<upnpDevice variable>.GetMute (Function)
Retrieves the 'Mute' status of a UPnP device....
<upnpDevice variable>.GetSharpness (Function)
Retrieves the sharpness of a UPnP device.
<upnpDevice variable>.GetVolume (Function)
Retrieves the volume of a UPnP device.
<upnpDevice variable>.MediaStop (Function)
Stops reading the current media on the UPNP device.
<upnpDevice Variable>.MediaPlay (Function)
Starts reading the current media on the UPnP device.
<upnpDevice variable>.MediaOpen (Function)
Opens a media on the UPnP device.
<upnpDevice variable>.MediaPause (Function)
Pauses the reading of the current media on the UPnP device.
<upnpDevice variable>.ModifyContrast (Function)
Modifies the contrast of a UPnP device.
<upnpDevice variable>.ModifyBrightness (Function)
Modifies the brightness of a UPnP device.
<upnpDevice variable>.ModifyMute (Function)
Modifies the 'Mute' status of a UPnP device....
<sshSession variable>.ConnectShell (Function)
Starts a new SSH session of "Shell" type.
<sshSession variable>.DisconnectShell (Function)
Closes an SSH session that was opened by SSHConnectShell.
<sshSession variable>.Write (Function)
Writes data into the specified SSH session.
<sshSession variable>.Read (Function)
Reads the data found on the output buffer of the SSH session.
<ParallelTask variable>.Wait (Function)
Waits for the execution of a parallel task.
<ParallelTask variable>.RequestCancellation (Function)
Requests the cancellation of a parallel task.
<AuthToken variable>.OpenIDReadIdentity (Function)
Retrieves the identity of a user contained in an AuthToken variable.
<mongoCollection variable>.Add (Function)
Adds one or more documents into a collection of MongoDB database.
<mongoGridFS variable>.SendFile (Function)
Copies a file from the local computer to a MongoDB file system (gridFS).
<mongoGridFS variable>.ListFile (Function)
Retrieves the list of MongoDB files found in the MongoDB file system (gridFS).
<mongoGridFS variable>.GetFileByID (Function)
Retrieves (on the local computer) a file identified by its identifier and found in a MongoDB file...
<mongoGridFS variable>.GetFileInfo (Function)
Used to get information about a MongoDB file (gridFS).
<mongoGridFS variable>.DeleteFile (Function)
Deletes a file identified by its name from a MongoDB file system.
<mongoCollection variable>.ModifyOne (Function)
Modifies a document in a collection of MongoDB database.
<mongoCollection variable>.DeleteAll (Function)
Deletes all the documents (corresponding to the specified filter) from a collection of a MongoDB...