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 de ventanas, páginas y controles
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 MarginHeight property property allows you to:
  • Find out the vertical margin between the widgets found in a Dashboard control.
  • Modify the vertical margin between the Widgets found in a Dashboard control.
Note: The vertical margin between Widgets in a Dashboard control is defined in the "Detail" tab of the Dashboard description window.
Ejemplo
// Modify CBOX_WidgetSpacing
IF CBOX_WidgetSpacing THEN
	DASH_Main.MarginWidth = 20
	DASH_Main.MarginHeight = 20
ELSE
	DASH_Main.MarginWidth = 0
	DASH_Main.MarginHeight = 0
END
Sintaxis

Finding out the vertical margin between the widgets Ocultar los detalles

<Result> = <Dashboard control>.MarginHeight
<Result>: Integer
Vertical margin (in pixels) between the widgets found in the specified Dashboard control.
<Dashboard control>: Control name
Name of the Dashboard control to be used.

Modifying the vertical margin between the widgets Ocultar los detalles

<Dashboard control>.MarginHeight = <New margin>
<Dashboard control>: Control name
Name of the Dashboard control to be used.
<New margin>: Integer
New vertical margin (in pixels) between the widgets found in the specified Dashboard control. This value must be positive or null.
Observaciones
  • This margin does not take into account the border defined in the style.
  • To change the horizontal margin, use the MarginWidth property.
Versión mínima requerida
  • Versión 19
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 10/05/2025

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