ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / Developing an application or website / Controls, windows and pages / Controls: Available types / Multiline Zone control
  • Overview
  • Manipulating Multiline Zone controls programmatically
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Overview
WINDEV and WINDEV Mobile allow you to programmatically manipulate Multiline Zone controls:
  • A Multiline Zone control can be handled in the code using its name. This page presents the different operations available.
  • There are multiple WLanguage functions to handle the dynamic rows of a Multiline Zone control.
This help page explains how to programmatically manipulate Multiline Zone controls.
Manipulating Multiline Zone controls programmatically
To access the controls in a static row of a Multiline Zone control, simply use the following syntax:
<Champ Zone multiligne>.<Nom du champ>
For example:
ZM_General.LIB_N_de_xxx = StringBuild("N° de Bon de Commande: %1", COMMANDE.NumCommande)
To handle the elements in a dynamic row of a Multiline Zone control, you must use the index of the row to handle. The syntax is as follows:
<Champ Zone multiligne>[<Indice>].<Nom du champ> = <Valeur>
For example:
nLigne is int = mlzAddLine(ZM_Produits)
ZM_Produits[nLigne].LIB_NomProdLigne = stLigne.sLibProd
ZM_Produits[nLigne].LIB_NomProdLigne.Couleur = LightBlue
ZM_Produits[nLigne].SAI_QteLigne = stLigne.nQuantite
Remarks:
  • Index "1" corresponds to the first row of the Multiline Zone control. All rows are numbered (static rows and dynamic rows). If the Multiline Zone control contains static rows and dynamic rows, the number of static rows must be taken into account.
  • The dynamic rows of a Multiline Zone control can be handled using different WLanguage functions.
Minimum version required
  • Version 17
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 09/24/2024

Send a report | Local help