AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Este contenido se ha traducido automáticamente.  Haga clic aquí  para ver la versión en inglés.
Ayuda / WLanguage / Propiedades WLanguage / Propiedades varias
WINDEV
WindowsLinuxJavaReportes y ConsultasCódigo de Usuario (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Código Navegador
WINDEV Mobile
AndroidWidget Android iPhone/iPadIOS WidgetApple WatchMac Catalyst
Otros
Procedimientos almacenados
The Group property is used to:
  • whether or not the field belongs to a field group. If the control belongs to one or more groups, the Group property can be used to identify these groups of controls.
  • WINDEVCódigo de Usuario (UMC) associating a control with a group of controls.
Reminder: The association of a field to a group of fields is done in the editor when describing the field ("UI" tab, "Group" button).
Ejemplo
// Connaître le nom du groupe de champs du champ MonChamp
NomGroupeChamps = MyControl.Groupe
IF Position(BTN_Fermer.Groupe, "Btn_Défaut")>0 THEN
	BTN_Fermer.Etat = Active
END
// OptionFermer est le nom d'une option de menu
Trace(OptionFermer.Groupe)
WINDEVCódigo de Usuario (UMC)
// Le groupe "GR_Options" a été créé sous l'éditeur
SAI_Options.Groupe = GR_Options
GR_Options.Visible = False
Sintaxis

Finding out the name of the group associated with a control Ocultar los detalles

<Group name> = <Control used>.Group
<Group name>: Character string
  • Name of the groups to which the control belongs. If the control belongs to more than one group, the names of the different groups are separated by a comma (e.g., "GR_GROUP1,GR_GROUP2").
  • Empty string ("") if the control belongs to no group.
<Control used>: Control name
Name of the control for which the groups must be found.
WINDEVWINDEV MobileCódigo de Usuario (UMC)

Associating a control with a group of controls Ocultar los detalles

<Control used>.Group = <Group name>
<Control used>: Control name
Name of the control to be used.
<Group name>: Character string
  • Name of the group(s) to which the control must be associated. To designate several groups, the names of the different groups must be separated by a comma (for instance, "GR_Group1,GR_Group2").
  • Empty string ("") if the control belongs to no group.
Observaciones
The Group property applies only to:
  • WINDEVWEBDEV - Código ServidorReportes y ConsultasiPhone/iPadIOS Widget the report controls.
  • WINDEVWINDEV Mobile the window controls (including the table columns) and the menu options.
    This property cannot be used with groups of controls, table rows, windows, ...
  • WEBDEV - Código Servidor the page controls (including the table columns).
    This property cannot be used in menu options, groups of controls, table rows, pages, etc.
Java The Group property can only be used in the following controls:
  • Button.
  • Static.
  • Edit control.
  • Image.
  • Check Box.
  • Radio Button.
  • List Box.
  • Combo Box.
  • TreeView.
  • Tab.
  • Table.
  • Table column.
  • Supercontrols.
Versión mínima requerida
  • Versión 9
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 02/12/2024

Señalar un error o enviar una sugerencia | Ayuda local