AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Funciones WLanguage / Controles, páginas y ventanas / Funciones Tabla
  • Characteristics of inserted row
  • Position of inserted row
  • Limits: Maximum number of lines displayed
  • Miscellaneous
  • Inserting images
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
Inserts a row into:
  • a Table control,
  • a TreeView Table control,
Remarks:
Ejemplo
// Insert the "Vince" and "Moore" elements
// in the 5th row of "TABLE_CustomerTable" control
ResInsert = TABLE_CustomerTable.Insert("Vince" + TAB + "Moore", 5)
Sintaxis
<Result> = <Table control>.Insert([<Row> [, <Index>]])
<Result>: Booleano
  • True if the element was inserted,
  • False otherwise.
<Table control>: Nombre del control
Name of the control to be used. This control can correspond to:
  • a Table control.
  • a TreeView Table control.
<Row>: Cadena de caracteres opcional
Row to insert. This row has the following format:
<Element column1> + TAB + <Element column2> + TAB + ...

If this parameter is not specified, an empty row is inserted into the control. For a data-bound control, the default values defined in the linked data file are taken into account.
<Index>: Entero opcional
Index of the row to insert. The index of the first row is set to 1.
Index not specifiedThe row will be inserted before the current row. If no row is selected, the row is inserted at the bottom of the control.
Index greater than the number of control rows.The row is inserted at the bottom of the control.
Index equal to 0The row is inserted at the beginning of the control.
Index equal to -1The row will be inserted before the current row.
Observaciones
<Table>.Insert 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.

Characteristics of inserted row

  • Each inserted element is converted into the type of relevant column.
  • If you don't want to specify a value for an element, use an empty string ("") or 0 (depending on the column type). For example:
    TABLE_CustomerTable.Insert("Moore" + TAB + "Vince" + TAB + "" + TAB + "06/21/72")
  • If an element corresponds to the result of a calculation, enclose the numerical expression in brackets. For example:
    TABLE_CalculationTable.Insert((53+29) + TAB + (83-21))

Position of inserted row

By default, the row is inserted at the specified position.
Special cases:
  • If the control is sorted with <Table>.Sort, the new row is positioned according to the current sort and not the specified index.
  • If the control is sorted by the user, the sort is ignored when inserting the row. The row is inserted at the specified position.

Limits: Maximum number of lines displayed

The maximum number of rows that can be displayed in a TreeView Table control or hierarchical Table is limited only by available RAM (theoretical maximum: 2 billion rows).
However, we do not advise you to use large Table or TreeView Table controls for performance and user-friendliness reasons (time required to fill the control for example).

Miscellaneous

To add rows at the end of a Table or TreeView Table control, use <Table>.AddLine.

Inserting images

To insert an image into a Table control:
    Note: To correctly display the added image, the column must be of type Image.
    Componente: wd300obj.dll
    Versión mínima requerida
    • Versión 23
    Esta página también está disponible para…
    Comentarios
    Haga clic en [Agregar] para publicar un comentario

    Última modificación: 18/09/2024

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