ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

New WINDEV and WINDEV Mobile 2024 feature!
This content has been translated automatically.  Click here  to view the French version.
Help / New features
  • Overview
  • New WLanguage functions
  • Improved WLanguage functions
  • New WLanguage properties
  • Improved WLanguage properties
  • New advanced types of WLanguage
  • Improved advanced WLanguage types
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
Overview
In version 2024, new functions, properties and data types have been introduced and some have been improved.
New WLanguage functions
Android New WLanguage functions for Android:
AccessibilityScreenReaderEnabledFinds out whether the screen reader is Active.
AnsiToOemConverts an ANSI string (Windows) to an OEM string (DOS).
AuthRefreshTokenRefreshes a user's OAuth2 token when it expires.
ConversionConverts a value from a unit to another one.
CurrentDayReturns the number of the current day in the current month.
DateToDateInYearReturns the day of the year that corresponds to a given date.
DriveCopyDirectoryCopies a directory on a remote drive to another directory.
DriveCopyFileCopies a single file on a remote drive to another directory on same drive.
DriveCreateDirectoryCreates a directory on the remote drive.
DriveCreateFileCreates a file on the remote drive.
DriveDeleteDirectoryDeletes a directory and its files from a remote drive.
DriveDeleteFileDeletes a file from a remote drive.
DriveDownloadDirectoryDownloads a directory and its files from a remote drive to the user's computer.
DriveDownloadFileDownloads a file from a remote drive to the user's computer.
DriveDownloadGglFileDownloads a Google Docs Editors file from Google Drive in a given compatible format.
DriveListDirectoryLists drive directories.
DriveListFileLists the files in a cloud-based drive directory.
DriveListFileGglLists Google Docs Editors files (Docs, Sheets, etc.) present on Google Drive.
DriveMoveDirectoryMoves a directory and its contents to another directory within a remote drive.
DriveMoveFileMoves a file on a remote drive from one directory to another.
DriveRenameRenames a file or directory on a remote drive.
DriveUploadDirectoryUploads a directory and its contents to a remote drive.
DriveUploadFileUploads a local file to a remote drive.
fChangeExtensionChanges the extension of a file on disk.
France.CheckTaxNumberChecks the validity of a French tax number.
GenerateLoremGenerates a random "Lorem ipsum" text to temporarily populate a control with text, for example.
GglDriveConnectCreates a connection to Google Drive.
grHistoTypeBarDefines the type of bar to be used in a histogram plot.
GuidedTourChangeStepMoves to another step of the Guided Tour.
GuidedTourInfoReturns information about a Guided Tour.
GuidedTourStartStarts the Guided Tour and displays the first step.
GuidedTourStopStops the current Guided Tour or another specified Guided Tour.
oDriveConnectCreates a connection to OneDrive.
OemToAnsiConverts an OEM string (DOS) to an ANSI string (Windows).
QuickActionAddAdds a new quick action to the application.
QuickActionListLists the application's quick actions.
QuickActionPinGenerates a request to pin a quick action.
QuickActionRemoveRemoves a quick action defined for the application.
QuickActionRemoveAllRemoves all the quick actions defined for the application. Quick actions pinned to the home screen will be disabled, but not removed.
UTF8ValidChecks the validity of a UTF-8 string.
UTFConvertConverts a string or buffer to the specified format: UTF, ANSI, Unicode.
New WLanguage functions (prefix syntax) for Android:
<ANSI string>.AnsiToOemConverts an ANSI string (Windows) to an OEM string (DOS).
<AuthToken>.RefreshTokenRefreshes a user's OAuth2 token when it expires.
<Drive variable>.CopyDirectoryCopies a directory on a remote drive to another directory.
<Drive variable>.CopyFileCopies a single file on a remote drive to another directory on same drive.
<Drive variable>.CreateDirectoryCreates a directory on the remote drive.
<Drive variable>.CreateFileCreates a file on the remote drive.
<Drive variable>.DeleteDirectoryDeletes a directory and its files from a remote drive.
<Drive variable>.DeleteFileDeletes a file from a remote drive.
<Drive variable>.DownloadDirectoryDownloads a directory and its files from a remote drive to the user's computer.
<Drive variable>.DownloadFileDownloads a file from a remote drive to the user's computer.
<Drive variable>.ListDirectoryLists drive directories.
<Drive variable>.ListFileLists the files in a cloud-based drive directory.
<Drive variable>.MoveDirectoryMoves a directory and its contents to another directory within a remote drive.
<Drive variable>.MoveFileMoves a file on a remote drive from one directory to another.
<Drive variable>.RenameRenames a file or directory on a remote drive.
<Drive variable>.UploadDirectoryUploads a directory and its contents to a remote drive.
<Drive variable>.UploadFileUploads a local file to a remote drive.
<gglDrive variable>.CopyFileCopies a single file on a remote drive to another directory on same drive.
<gglDrive variable>.DeleteFileDeletes a Google Docs Editor file from Google Drive.
<gglDrive variable>.DownloadGglFileDownloads a Google Docs Editors file from Google Drive in a given compatible format.
<gglDrive variable>.ListFileGglLists Google Docs Editors files (Docs, Sheets, etc.) present on Google Drive.
<gglDrive variable>.MoveFileMoves a file on a remote drive from one directory to another.
<gglDrive variable>.RenameRenames a directory or Google Docs Editors file on Google Drive.
<GuidedTour>.ChangeStepMoves to another step of the Guided Tour.
<GuidedTour>.StartStarts the Guided Tour and displays the first step.
<GuidedTour>.StopStops the current Guided Tour or another specified Guided Tour.
<OEM string>.OemToAnsiConverts an OEM string (DOS) to an ANSI string (Windows).
<QuickAction variable>.AddAdds a new quick action to the application.
<QuickAction variable>.PinGenerates a request to pin a quick action.
<QuickAction variable>.RemoveRemoves a quick action defined for the application.
.HistoTypeBarreDefines the type of bar to be used in a histogram plot.
ToDayInYearReturns the day of the year that corresponds to a given date.
Android Widget New WLanguage functions for developing in Android widget mode:
AuthRefreshTokenRefreshes a user's OAuth2 token when it expires.
ConversionConverts a value from a unit to another one.
CurrentDayReturns the number of the current day in the current month.
DateToDateInYearReturns the day of the year that corresponds to a given date.
fChangeExtensionChanges the extension of a file on disk.
France.CheckTaxNumberChecks the validity of a French tax number.
InGuidedTourModeIndicates if there is a Guided Tour in progress.
QuickActionListLists the application's quick actions.
QuickActionPinGenerates a request to pin a quick action.
QuickActionRemoveAllRemoves all the quick actions defined for the application. Quick actions pinned to the home screen will be disabled, but not removed.
UTF8ValidChecks the validity of a UTF-8 string.
UTFConvertConverts a string or buffer to the specified format: UTF, ANSI, Unicode.
New WLanguage functions (prefix syntax) for the Android widget mode:
<AuthToken>.RefreshTokenRefreshes a user's OAuth2 token when it expires.
<QuickAction variable>.PinGenerates a request to pin a quick action.
ToDayInYearReturns the day of the year that corresponds to a given date.
iPhone/iPad New WLanguage functions for iPhone/iPad:
AccessibilityScreenReaderEnabledFinds out whether the screen reader is Active.
ArrayToParametersConverts an array of elements into a list of parameters.
AuthImportTokenCreates a webservice access token from an description token in JSON format.
Belgium.CheckTaxNumberChecks the validity of a Belgian tax number.
Brazil.CheckTaxNumberChecks the validity of a Brazilian tax number.
Canada.CheckTaxNumberChecks the validity of a Canadian tax number.
CurrentDayReturns the number of the current day in the current month.
DateTimeLocalToTimeZoneConverts a local date and time to the date and time in a particular time zone.
DateTimeTimeZoneToLocalConverts a date and time from a particular time zone to a local date and time.
DateToDateInYearReturns the day of the year that corresponds to a given date.
DriveCopyDirectoryCopies a directory on a remote drive to another directory.
DriveCopyFileCopies a single file on a remote drive to another directory on same drive.
DriveCreateDirectoryCreates a directory on the remote drive.
DriveCreateFileCreates a file on the remote drive.
DriveDeleteDirectoryDeletes a directory and its files from a remote drive.
DriveDeleteFileDeletes a file from a remote drive.
DriveDownloadDirectoryDownloads a directory and its files from a remote drive to the user's computer.
DriveDownloadFileDownloads a file from a remote drive to the user's computer.
DriveDownloadGglFileDownloads a Google Docs Editors file from Google Drive in a given compatible format.
DriveListDirectoryLists drive directories.
DriveListFileLists the files in a cloud-based drive directory.
DriveListFileGglLists Google Docs Editors files (Docs, Sheets, etc.) present on Google Drive.
DriveMoveDirectoryMoves a directory and its contents to another directory within a remote drive.
DriveMoveFileMoves a file on a remote drive from one directory to another.
DriveRenameRenames a file or directory on a remote drive.
DriveUploadDirectoryUploads a directory and its contents to a remote drive.
DriveUploadFileUploads a local file to a remote drive.
France.CheckTaxNumberChecks the validity of a French tax number.
gClickableLinkAdds a clickable link in a graphic string.
Germany.CheckTaxNumberChecks the validity of a German tax number.
GglDriveConnectCreates a connection to Google Drive.
grHistoTypeBarDefines the type of bar to be used in a histogram plot.
grWaffleSizeDefines the number of rows and columns in a Waffle graph.
grWaffleTypeCellDefines the Geometry of cells in a Waffle graph.
GuidedTourChangeStepMoves to another step of the Guided Tour.
GuidedTourInfoReturns information about a Guided Tour.
GuidedTourStartStarts the Guided Tour and displays the first step.
GuidedTourStopStops the current Guided Tour or another specified Guided Tour.
HListMonitoredFilesReturns the list of files monitored by the HSurveillance function.
InGuidedTourModeIndicates if there is a Guided Tour in progress.
Italy.CheckTaxNumberChecks the validity of an Italian tax number.
ListInfoXYReturns the index of the row (or image) at a given position in a List Box or ListView control.
ListMoveLineMoves a row or swaps two rows in a List Box or Combo Box control.
LuhnCalculateCalculates the next Luhn check digit for a given sequence.
LuhnCheckChecks that the given sequence is valid according to the Luhn formula.
oDriveConnectCreates a connection to OneDrive.
PhoneticReturns the phonetic transcription of the string passed as parameter.
QuickActionAddAdds a new quick action to the application.
QuickActionListLists the application's quick actions.
QuickActionRemoveRemoves a quick action defined for the application.
QuickActionRemoveAllRemoves all the quick actions defined for the application. Quick actions pinned to the home screen will be disabled, but not removed.
SocketClientInfoAllows the server to get information about the current client socket.
Spain.CheckTaxNumberChecks the validity of a Spanish tax number.
Switzerland.CheckTaxNumberChecks the validity of a Swiss tax number.
TableDeleteSelectDeletes the selected rows from a Table or Treeview Table control.
UnitedStates.CheckTaxNumberChecks the validity of a US tax number.
UTF8ValidChecks the validity of a UTF-8 string.
XMLVerifySignatureChecks the signature of an XML node.
New WLanguage functions (prefix syntax) for iPhone/iPad:
<Drive variable>.CopyDirectoryCopies a directory on a remote drive to another directory.
<Drive variable>.CopyFileCopies a single file on a remote drive to another directory on same drive.
<Drive variable>.CreateDirectoryCreates a directory on the remote drive.
<Drive variable>.CreateFileCreates a file on the remote drive.
<Drive variable>.DeleteDirectoryDeletes a directory and its files from a remote drive.
<Drive variable>.DeleteFileDeletes a file from a remote drive.
<Drive variable>.DownloadDirectoryDownloads a directory and its files from a remote drive to the user's computer.
<Drive variable>.DownloadFileDownloads a file from a remote drive to the user's computer.
<Drive variable>.ListDirectoryLists drive directories.
<Drive variable>.ListFileLists the files in a cloud-based drive directory.
<Drive variable>.MoveDirectoryMoves a directory and its contents to another directory within a remote drive.
<Drive variable>.MoveFileMoves a file on a remote drive from one directory to another.
<Drive variable>.RenameRenames a file or directory on a remote drive.
<Drive variable>.UploadDirectoryUploads a directory and its contents to a remote drive.
<Drive variable>.UploadFileUploads a local file to a remote drive.
<gglDrive variable>.CopyFileCopies a single file on a remote drive to another directory on same drive.
<gglDrive variable>.DeleteFileDeletes a Google Docs Editor file from Google Drive.
<gglDrive variable>.DownloadGglFileDownloads a Google Docs Editors file from Google Drive in a given compatible format.
<gglDrive variable>.ListFileGglLists Google Docs Editors files (Docs, Sheets, etc.) present on Google Drive.
<gglDrive variable>.MoveFileMoves a file on a remote drive from one directory to another.
<gglDrive variable>.RenameRenames a directory or Google Docs Editors file on Google Drive.
<GuidedTour>.ChangeStepMoves to another step of the Guided Tour.
<GuidedTour>.InfoReturns information about a Guided Tour.
<GuidedTour>.StartStarts the Guided Tour and displays the first step.
<GuidedTour>.StopStops the current Guided Tour or another specified Guided Tour.
<List Box>.InfoXYReturns the index of the row (or image) at a given position in a List Box or ListView control.
<List Box>.MoveLineMoves a row or swaps two rows in a List Box or Combo Box control.
<pdfDocument variable>.ToTextExtracts text from a PDF document.
<QuickAction variable>.AddAdds a new quick action to the application.
<QuickAction variable>.RemoveRemoves a quick action defined for the application.
<Table>.DeleteSelectDeletes the selected rows from a Table or Treeview Table control.
.HistoTypeBarreDefines the type of bar to be used in a histogram plot.
.WaffleSizeDefines the number of rows and columns in a Waffle graph.
.WaffleTypeCellDefines the Geometry of cells in a Waffle graph.
IOS Widget New WLanguage functions for developing in iOS widget mode:
AuthImportTokenCreates a webservice access token from an description token in JSON format.
Belgium.CheckTaxNumberChecks the validity of a Belgian tax number.
Brazil.CheckTaxNumberChecks the validity of a Brazilian tax number.
Canada.CheckTaxNumberChecks the validity of a Canadian tax number.
CurrentDayReturns the number of the current day in the current month.
DateTimeLocalToTimeZoneConverts a local date and time to the date and time in a particular time zone.
DateTimeTimeZoneToLocalConverts a date and time from a particular time zone to a local date and time.
DateToDateInYearReturns the day of the year that corresponds to a given date.
France.CheckTaxNumberChecks the validity of a French tax number.
Germany.CheckTaxNumberChecks the validity of a German tax number.
grHistoTypeBarDefines the type of bar to be used in a histogram plot.
grWaffleSizeDefines the number of rows and columns in a Waffle graph.
grWaffleTypeCellDefines the Geometry of cells in a Waffle graph.
HListMonitoredFilesReturns the list of files monitored by the HSurveillance function.
Italy.CheckTaxNumberChecks the validity of an Italian tax number.
LuhnCalculateCalculates the next Luhn check digit for a given sequence.
LuhnCheckChecks that the given sequence is valid according to the Luhn formula.
PhoneticReturns the phonetic transcription of the string passed as parameter.
SocketClientInfoAllows the server to get information about the current client socket.
Spain.CheckTaxNumberChecks the validity of a Spanish tax number.
Switzerland.CheckTaxNumberChecks the validity of a Swiss tax number.
UnitedStates.CheckTaxNumberChecks the validity of a US tax number.
UTF8ValidChecks the validity of a UTF-8 string.
XMLVerifySignatureChecks the signature of an XML node.
New WLanguage functions (prefix syntax) in iOS widget mode:
.HistoTypeBarreDefines the type of bar to be used in a histogram plot.
.WaffleSizeDefines the number of rows and columns in a Waffle graph.
.WaffleTypeCellDefines the Geometry of cells in a Waffle graph.
Apple Watch New WLanguage functions for Apple Watch:
Belgium.CheckTaxNumberChecks the validity of a Belgian tax number.
Brazil.CheckTaxNumberChecks the validity of a Brazilian tax number.
Canada.CheckTaxNumberChecks the validity of a Canadian tax number.
France.CheckTaxNumberChecks the validity of a French tax number.
Germany.CheckTaxNumberChecks the validity of a German tax number.
Italy.CheckTaxNumberChecks the validity of an Italian tax number.
Spain.CheckTaxNumberChecks the validity of a Spanish tax number.
Switzerland.CheckTaxNumberChecks the validity of a Swiss tax number.
UnitedStates.CheckTaxNumberChecks the validity of a US tax number.
UTF8ValidChecks the validity of a UTF-8 string.
Mac Catalyst New WLanguage functions in Catalyst mode:
Belgium.CheckTaxNumberChecks the validity of a Belgian tax number.
Brazil.CheckTaxNumberChecks the validity of a Brazilian tax number.
Canada.CheckTaxNumberChecks the validity of a Canadian tax number.
DateTimeLocalToTimeZoneConverts a local date and time to the date and time in a particular time zone.
DateTimeTimeZoneToLocalConverts a date and time from a particular time zone to a local date and time.
France.CheckTaxNumberChecks the validity of a French tax number.
Germany.CheckTaxNumberChecks the validity of a German tax number.
Italy.CheckTaxNumberChecks the validity of an Italian tax number.
LuhnCalculateCalculates the next Luhn check digit for a given sequence.
LuhnCheckChecks that the given sequence is valid according to the Luhn formula.
PhoneticReturns the phonetic transcription of the string passed as parameter.
Spain.CheckTaxNumberChecks the validity of a Spanish tax number.
Switzerland.CheckTaxNumberChecks the validity of a Swiss tax number.
UnitedStates.CheckTaxNumberChecks the validity of a US tax number.
UTF8ValidChecks the validity of a UTF-8 string.
Universal Windows 10 App New WLanguage functions (prefix syntax) for Universal Windows Platform applications:
Belgium.CheckTaxNumberChecks the validity of a Belgian tax number.
Brazil.CheckTaxNumberChecks the validity of a Brazilian tax number.
Canada.CheckTaxNumberChecks the validity of a Canadian tax number.
CurrentDayReturns the number of the current day in the current month.
DateToDateInYearReturns the day of the year that corresponds to a given date.
France.CheckTaxNumberChecks the validity of a French tax number.
Germany.CheckTaxNumberChecks the validity of a German tax number.
grHistoTypeBarDefines the type of bar to be used in a histogram plot.
Italy.CheckTaxNumberChecks the validity of an Italian tax number.
Spain.CheckTaxNumberChecks the validity of a Spanish tax number.
Switzerland.CheckTaxNumberChecks the validity of a Swiss tax number.
UnitedStates.CheckTaxNumberChecks the validity of a US tax number.
UTF8ValidChecks the validity of a UTF-8 string.
New WLanguage functions (prefix syntax) for Universal Windows Platform applications:
.HistoTypeBarreDefines the type of bar to be used in a histogram plot.
Improved WLanguage functions
AndroidAndroid Widget The following functions have been improved in this version:
dArcNew syntax for drawing an arc along a zone defined with an Variable of type Rectangle.
dChordNew syntax for drawing a chord according to a zone defined with an Variable of type Rectangle.
dCircleNew syntax for drawing a circle according to a zone defined with an Variable of type Rectangle.
dCopyNew syntax for copying a zone defined with an Variable of type Rectangle.
dCropNew syntax for slicing an image according to a zone defined with an Variable of type Rectangle.
dSliceNew syntax for drawing a Section according to a zone defined with an Variable of type Rectangle.
ExecuteProcessNew constants to manage the click code on buttons integrated into an edit control.
NumToStringConversion format can be defined using Variable type NumericFormat.
WinSlidingVisibleNew constants to manage low sliding windows.
iPhone/iPad The following WLanguage functions have been improved:
AuthIdentifyNew syntax for managing the JWT protocol.
dArcNew syntax for drawing an arc along a zone defined with an Variable of type Rectangle.
dChordNew syntax for drawing a chord according to a zone defined with an Variable of type Rectangle.
dCircleNew syntax for drawing a circle according to a zone defined with an Variable of type Rectangle.
dCopyNew syntax for copying a zone defined with an Variable of type Rectangle.
dCopyScreenImageNew syntax for copying a screen zone defined with an Variable of type Rectangle.
dCropNew syntax for slicing an image according to a zone defined with an Variable of type Rectangle.
dSliceNew syntax for drawing a Section according to a zone defined with an Variable of type Rectangle.
ExecuteProcessNew constants to manage the click code on buttons integrated into an edit control.
fReadLineNew syntax for reading an row via an Procedure WLanguage.
grColumnSpacingNow lets you define the spacing between cells in a Waffle graph.
grCreateNew constant to manage Waffle graphs.
grSeriesTypeNew constant to manage Waffle graphs.
grTooltipNew constant to manage Waffle graphs.
grTypeNew constant to manage Waffle graphs.
NumToStringConversion format can be defined using Variable type NumericFormat.
PDFToTextNew syntax to obtain the text of an Document PDF page (Variable of type pdfDocument).
WinSlidingVisibleNew constants to manage low sliding windows.
XMLOpenNew parameter to specify the XML code analysis mode.
IOS Widget The following WLanguage functions have been improved:
AuthIdentifyNew syntax for managing the JWT protocol.
dArcNew syntax for drawing an arc along a zone defined with an Variable of type Rectangle.
dChordNew syntax for drawing a chord according to a zone defined with an Variable of type Rectangle.
dCircleNew syntax for drawing a circle according to a zone defined with an Variable of type Rectangle.
dCopyNew syntax for copying a zone defined with an Variable of type Rectangle.
dCropNew syntax for slicing an image according to a zone defined with an Variable of type Rectangle.
dSliceNew syntax for drawing a Section according to a zone defined with an Variable of type Rectangle.
fReadLineNew syntax for reading an row via an Procedure WLanguage.
NumToStringConversion format can be defined using Variable type NumericFormat.
XMLOpenNew parameter to specify the XML code analysis mode.
Universal Windows 10 App The following WLanguage functions have been improved:
dArcNew syntax for drawing an arc along a zone defined with an Variable of type Rectangle.
dChordNew syntax for drawing a chord according to a zone defined with an Variable of type Rectangle.
dCircleNew syntax for drawing a circle according to a zone defined with an Variable of type Rectangle.
dCopyNew syntax for copying a zone defined with an Variable of type Rectangle.
dCropNew syntax for slicing an image according to a zone defined with an Variable of type Rectangle.
dSliceNew syntax for drawing a Section according to a zone defined with an Variable of type Rectangle.
NumToStringConversion format can be defined using Variable type NumericFormat.
XMLOpenNew parameter to specify the XML code analysis mode.
New WLanguage properties
Android New WLanguage properties for Android applications:
AccessibilityThe Accessibility property gets and sets the accessibility properties of a control.
ActivePlaneThe ActivePlane gets and sets the number of the active plane in a window, internal window or Cell control.
FlexAlignContentThe FlexAlignContent property gets and sets the alignment of the lines within the Flexbox control along the cross axis (corresponding CSS property: "align-content").
FlexAlignItemsThe FlexAlignItems property gets and sets the alignment of the items in a line of a Flexbox control along the cross axis (corresponding CSS property: "align-items").
FlexAlignSelfThe FlexAlignSelf property gets and sets the alignment of an item along the cross axis of a Flexbox control (corresponding CSS property: "align-self").
FlexColumnGapThe FlexColumnGap property gets and sets the size of the gutter that separates the columns of a Flexbox control.
FlexDirectionThe FlexDirection property gets and sets the direction of the main axis of a Flexbox control (corresponding CSS property: "flex-direction").
FlexGrowThe FlexGrow property gets and sets the grow factor of an item in a line of a Flexbox control.
FlexJustifyContentThe FlexJustifyContent property gets and sets the alignment of items in the Flexbox control along the main axis (corresponding CSS property: "justify-content").
FlexRowGapThe FlexRowGap property gets and sets the size of the gutter that separates the rows of a Flexbox control.
FlexShrinkThe FlexShrink property gets and sets the shrink factor of an item in a line of a Flexbox control.
FlexWrapThe FlexWrap property determines whether items are laid out in one line, or can wrap onto multiple lines (corresponding CSS property: "flex-wrap").
HeightCollapsedThe HeightCollapsed property gets and sets the "collapsed" height of the bottom sliding window associated with the current window.
HeightExpandedThe HeightExpanded property gets and sets the "expanded" height of the bottom sliding window associated with the current window.
HeightHalfExpandedThe HeightHalfExpanded property gets and sets the "half-expanded" height of the bottom sliding window associated with the current window.
HideableThe Hideable property determines if the user can close a bottom sliding window with a touch gesture.
InternalWindowThe InternalWindow property gets and sets the internal window contained in the bottom sliding window associated with the current window.
LeftButtonThe LeftButton property gets and sets the characteristics of a button located on the left side of an Edit control.
ModalThe Modal property determines whether the bottom sliding window associated with the current current window is modal or modeless.
RightButtonThe RightButton property gets and sets the characteristics of a button located on the right side of an Edit control.
RoundedCornerThe RoundedCorner property allows you to determine whether the bottom sliding window associated with the current window has rounded corners.
iPhone/iPad New WLanguage properties for iPhone/iPad applications:
AccessibilityThe Accessibility property gets and sets the accessibility properties of a control.
ActivePlaneThe ActivePlane gets and sets the number of the active plane in a window, internal window or Cell control.
FlexAlignContentThe FlexAlignContent property gets and sets the alignment of the lines within the Flexbox control along the cross axis (corresponding CSS property: "align-content").
FlexAlignItemsThe FlexAlignItems property gets and sets the alignment of the items in a line of a Flexbox control along the cross axis (corresponding CSS property: "align-items").
FlexAlignSelfThe FlexAlignSelf property gets and sets the alignment of an item along the cross axis of a Flexbox control (corresponding CSS property: "align-self").
FlexColumnGapThe FlexColumnGap property gets and sets the size of the gutter that separates the columns of a Flexbox control.
FlexDirectionThe FlexDirection property gets and sets the direction of the main axis of a Flexbox control (corresponding CSS property: "flex-direction").
FlexGrowThe FlexGrow property gets and sets the grow factor of an item in a line of a Flexbox control.
FlexJustifyContentThe FlexJustifyContent property gets and sets the alignment of items in the Flexbox control along the main axis (corresponding CSS property: "justify-content").
FlexRowGapThe FlexRowGap property gets and sets the size of the gutter that separates the rows of a Flexbox control.
FlexShrinkThe FlexShrink property gets and sets the shrink factor of an item in a line of a Flexbox control.
FlexWrapThe FlexWrap property determines whether items are laid out in one line, or can wrap onto multiple lines (corresponding CSS property: "flex-wrap").
HeightCollapsedThe HeightCollapsed property gets and sets the "collapsed" height of the bottom sliding window associated with the current window.
HeightExpandedThe HeightExpanded property gets and sets the "expanded" height of the bottom sliding window associated with the current window.
HeightHalfExpandedThe HeightHalfExpanded property gets and sets the "half-expanded" height of the bottom sliding window associated with the current window.
HideableThe Hideable property determines if the user can close a bottom sliding window with a touch gesture.
InternalWindowThe InternalWindow property gets and sets the internal window contained in the bottom sliding window associated with the current window.
IntervalXThe IntervalX property gets the interval between marks on the X-axis.
IntervalYThe IntervalY property gets the interval between marks on the Y-axis.
LeftButtonThe LeftButton property gets and sets the characteristics of a button located on the left side of an Edit control.
ModalThe Modal property determines whether the bottom sliding window associated with the current current window is modal or modeless.
RightButtonThe RightButton property gets and sets the characteristics of a button located on the right side of an Edit control.
RoundedCornerThe RoundedCorner property allows you to determine whether the bottom sliding window associated with the current window has rounded corners.
Improved WLanguage properties
Android The following WLanguage properties have been improved:
ProcessNew constants to manage the click code on buttons integrated into an edit control.
iPhone/iPad The following WLanguage properties have been improved:
ProcessNew constants to manage the click code on buttons integrated into an edit control.
New advanced types of WLanguage
Android New advanced types available for Android applications:
DriveThe Drive type is used to handle online storage services. To use this type of variable, you need to connect to the desired service.
gglDriveThe gglDrive type is used to handle Google Drive. To use a gglDrive variable, you need to connect to Google Drive using GglDriveConnect.
GglFileThe GglFile type is used to get all the characteristics of a file used in one of the Google Docs Editors (Docs, Sheets, etc.).
GuidedTourThe GuidedTour type is used to define the advanced characteristics of a Guided Tour and its steps.
GuidedTourStepThe GuidedTourStep is used to define all the advanced characteristics of a step of a Guided Tour.
NumericFormatThe NumericFormat type allows you to define all the characteristics of the format that can be used with the NumericalToString function.
QuickActionThe QuickAction type allows you to define all the advanced characteristics of a quick action of an app on Android (app shortcut) or iOS (Quick Action).
iPhone/iPad New advanced types available for iOS applications:
DriveThe Drive type is used to handle online storage services. To use this type of variable, you need to connect to the desired service.
gglDriveThe gglDrive type is used to handle Google Drive. To use a gglDrive variable, you need to connect to Google Drive using GglDriveConnect.
GglFileThe GglFile type is used to get all the characteristics of a file used in one of the Google Docs Editors (Docs, Sheets, etc.).
GuidedTourThe GuidedTour type is used to define the advanced characteristics of a Guided Tour and its steps.
GuidedTourStepThe GuidedTourStep is used to define all the advanced characteristics of a step of a Guided Tour.
NumericFormatThe NumericFormat type allows you to define all the characteristics of the format that can be used with the NumericalToString function.
QuickActionThe QuickAction type allows you to define all the advanced characteristics of a quick action of an app on Android (app shortcut) or iOS (Quick Action).
xmlSignatureVerificationThe xmlSignatureVerification type is used to define the information necessary for verifying an XML signature.
IOS Widget The new advanced types available for iOS Widget applications are as follows:
xmlSignatureVerificationThe xmlSignatureVerification type is used to define the information necessary for verifying an XML signature.
Universal Windows 10 App The new advanced types available for Windows Store apps are as follows:
NumericFormatThe NumericFormat type allows you to define all the characteristics of the format that can be used with the NumericalToString function.
Improved advanced WLanguage types
Android The following advanced types have been improved for Android applications:
httpRequestProperty ProcedureTrace: New constant httpTraceInfo to obtain detailed information on the execution of the request (cURL/OpenSSL low level error, current step, warnings, etc.).
OAuth2ParametersProperty Option: Enables PKCE authentication.
restRequestProperty ProcedureTrace: New constant httpTraceInfo to obtain detailed information on the execution of the request (cURL/OpenSSL low level error, current step, warnings, etc.).
iPhone/iPad The following advanced types have been improved for iOS applications:
httpRequestProperty ProcedureTrace: New constant httpTraceInfo to obtain detailed information on the execution of the request (cURL/OpenSSL low level error, current step, warnings, etc.).
OAuth2ParametersProperty Option: Enables PKCE authentication.
restRequestProperty ProcedureTrace: New constant httpTraceInfo to obtain detailed information on the execution of the request (cURL/OpenSSL low level error, current step, warnings, etc.).
Minimum version required
  • Version 2024
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 02/03/2024

Send a report | Local help