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 / Funciones WLanguage / Controles, páginas y ventanas / Funciones Tabla
  • Use conditions
  • Creating/Deleting columns
  • Invisible columns
  • Equivalence between TableAdjust with the control properties
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
Adjusts the title and size of columns found in a Table or TreeView Table control. You can define:
  • the column title,
  • the column width,
  • the alignment of column elements,
  • the input size of column.
Ejemplo
// Modify the titles and width of the two
// first columns found in the "TABLE_ProductTable" control
TableAdjust(TABLE_ProductTable, "Ref" + TAB + "50" + TAB + ...
	"C" + TAB + "12" + CR + "Designation" + TAB + "200" + ...
	TAB + "G" + TAB + "12")
Sintaxis
TableAdjust(<Table control> [, <Format>])
<Table control>: Control name
Name of the control to be used. This field may correspond to:
  • a Table control,
  • a TreeView Table control.
If this parameter corresponds to an empty string (""), the control used will be the control to which the current event belongs.
<Format>: Optional character string
This parameter has the following format:
<Title of column 1> + TAB + <Size of column 1> + TAB + ...
<Alignment of elements> + TAB + <Input size> + CR + ...
...
<Title of column N> + TAB + <Size of column N> + TAB + ...
<Alignment of elements> + TAB + <Input size>
where:
<Title of column>Character stringModifies the title of column.
<Size of column>IntegerModifies the size of column (in characters).
<Alignment of elements>CharacterModifies the alignment of column elements:
  • "C": Centers the items in the column
  • "G": Frame elements on the left
  • "D": Frame the elements on the right
<Input size>IntegerModifies the number of characters that can be typed in the column (in number of characters and not in pixels).
Note: The width of a character corresponds to the width of the 'E' character in the field title font.

If this parameter is not specified, the width of columns is adjusted to the smallest possible width in order for the data to be visible.
Java This parameter must be specified.
Observaciones

Use conditions

TableAdjust can be used on:
  • Table or TreeView Table controls based on a data file.
  • Table or TreeView Table controls populated programmatically.
  • single-selection or multi-selection controls.

Creating/Deleting columns

TableAdjust creates no column and deletes no column. The control columns must have been described in the window editor beforehand. Make sure that a sufficient number of columns exists before they are handled by TableAdjust.
If the number of columns found in the control is greater than the number of columns handled by TableAdjust, the last columns will have no title and a null size.

Invisible columns

If the columns managed by TableAdjust are invisible, these columns will automatically become visible.

Equivalence between TableAdjust with the control properties

The Title, Width, Size and HorizontalAlignment properties have the same effect as the TableAdjust function.
Componente: wd300obj.dll
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: 27/03/2025

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