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 BottomIndent property gets and sets the space at the bottom of the text (bottom margin) in a control.
This property is available on:
  • Edit controls.
  • Static Text controls.
Note This property is equivalent to the definition of low margin:
  • For the Static Text control: the bottom margin is defined in the "Style" tab of the field description window ("Outer frame" item, "Margins" button, "Bottom margin" option).
  • For an Edit control, the bottom margin is defined in the "Style" tab of the control description window ("Input area", "Margins", "Bottom margin").
Ejemplo
// Define a margin equal to 4 pixels at the top and bottom of Static Text control
STC_Date.BottomIndent = 4
STC_Date.TopIndent = 4
// Keep a 5-pixel margin at the top and bottom of the input area
EDT_CarName.BottomIndent = 5
EDT_CarName.TopIndent = 5
Sintaxis

Getting the value of the bottom margin Ocultar los detalles

<Result> = <Control used>.BottomIndent
<Result>: Integer
Number of pixels of the bottom margin. The indent is set to 0 pixels by default (no indent).
<Control used>: Control name
Name of field manipulated:
  • Static control,
  • Edit control.

Changing the value of the bottom margin Ocultar los detalles

<Control used>.BottomIndent = <New value>
<Control used>: Control name
Name of field manipulated:
  • Static control,
  • Edit control.
<New value>: Integer
New value for the bottom margin (in pixels). This value must be positive.
Versión mínima requerida
  • Versión 22
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