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 property Group property allows you 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.
Reminder Associating a field with a group of fields is done in the editor when describing the field ("UI" tab, "Group" button).
Ejemplo
// Find out the name of the group of controls to which MyControl belongs
NameGroupControls = MyControl.Group
IF Position(BTN_Close.Group, "Btn_Default")>0 THEN
	BTN_Close.State = Active
END
// CloseOption is the name of a menu option
Trace(CloseOption.Group)
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.
Observaciones
The Group property applies only to:
  • Reportes y Consultas the report controls.
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: 13/05/2025

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