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
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
Fixes a column to the left or frees a column fixed to the left. This function can also be used to find out whether the column is fixed to the left or not.
Remarks:
  • The columns fixed to the left do not scroll with the horizontal scrollbar.
  • This function is equivalent to:
    • the lock set by the user.
    • the "Freeze columns to the left" option in the context menu of the column title.
    For more details, see AAF: Set columns for a Table field
Ejemplo
// Fixes/Frees a column with a button
// Click on the button
IF TableFixColumn(COL_COLUMN) THEN
	// The column was fixed
	TableFixColumn(COL_COLUMN, False) // Free it
ELSE
	// The column was freed
	TableFixColumn(COL_COLUMN, True) // Fix it
END
Sintaxis
<Result> = TableFixColumn(<Column> [, <Fix / Free>])
<Result>: Boolean
Previous status of the column:
  • True, fixed column,
  • False, free column.
<Column>: Control name
Name of the column to be used.
If several Table fields have columns with the same name, the column name must be prefixed with the Table field name: <Champ Table>.<Colonne>.
<Fix / Free>: Optional boolean
  • True the column must be fixed
  • False the column must be cleared.
If this parameter is not specified, TableFixColumn returns the current status of the column.
Observaciones
  • TableFixColumn has no effect if it is used to fix a column that is already fixed.
  • This function cannot be used with indexed columns.
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