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
  • Data-bound List Box, Table and Combo Box controls
  • List Box control
  • ListView control
  • Limits
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 LineHeight property gets and sets the height of the rows:
  • in a List Box control,
  • in a ListView control (standard display mode only),
  • in a Table control,
  • in a Combo Box control,
  • in a Looper control (row height).
  • WINDEV in an Organizer control.
  • WINDEV of a Spreadsheet control.
  • WINDEV in a Treeview control.
Remarks:
  • List or Combo field: Line heights are defined in the window editor, in the "Style" tab of the field description.
  • Table, TreeView control, RepeatString, Spreadsheet control: Line heights are defined in the window editor, in the "Detail" tab of the field description.
Ejemplo
// Increase the height of rows found in "TABLE_CustomerTable"
TABLE_CustomerTable.LineHeight = TABLE_CustomerTable.LineHeight + 100
// Equivalent to: TABLE_TableClient.RowHeight +=100
Sintaxis

Finding out the height of rows in a control Ocultar los detalles

<Current height> = <Control used>.LineHeight
<Current height>: Integer
Height (in pixels) of rows in the specified control.
<Control used>: Control name
Name of the control to be used.

Modifying the height of rows in a control Ocultar los detalles

<Control used>.LineHeight = <New height>
<Control used>: Control name
Name of the control to be used.
<New height>: Integer
New height (in pixels) of the rows in the specified control.
Observaciones

Data-bound List Box, Table and Combo Box controls

When the height of rows is modified in a data-bound Table, List Box or Combo Box control, the new height is applied to the visible rows only.

List Box control

If necessary, a vertical scrollbar can be displayed in a List Box control when the height of rows is modified.
WINDEV

ListView control

The LineHeight property is only taken into account if the ListView control is displayed in standard mode.

Limits

Android The LineHeight property applies only to:
  • List Box controls,
  • Combo Box controls,
  • Looper controls,
  • Table controls.
iPhone/iPad The LineHeight property applies only to:
  • Looper controls,
  • List Box controls,
  • Table controls.
Java The LineHeight property applies only to:
  • List Box controls,
  • Combo Box control,
  • Table controls.
Versión mínima requerida
  • Versión 9
Esta página también está disponible para…
Comentarios
Interesting also for Webdev
It would be interesting to have this property in Webdev, in my case to change the height corresponding to the "whole day" appointments in the Organizer control.
Josep Castany
10 02 2016

Última modificación: 10/05/2025

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