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 property ActiveTotals property allows you to:
  • * Identify the calculation method used for columns in a Table or TreeView Table control (automatic or custom),
  • Temporarily prohibit or force column calculations (automatic or customized) in a Table or hierarchical Table field.
Remarks:
Ejemplo
TABLE_TABLE1.ActiveTotals = False // no more totals calculated
FOR I = 1 TO 50
	TableAdd(TABLE_TABLE1, MyCalculationRowContent(I))
	Multitask(-1) // the table is redisplayed without totals
END
TABLE_TABLE1.ActiveTotals = True
Trace(" Total = " + COL_TOTALCOL[rowTotal])
Sintaxis

Identifying the calculation method used for columns (automatic or custom) Ocultar los detalles

<Result> = <Control used>.TotalsEnabled
<Result>: Boolean
  • True if the column calculations (automatic or custom) are immediately performed,
  • False if the column calculations (automatic or custom) are not performed.
<Control used>: Control name
Name of Table or TreeView Table control containing the column calculations (automatic or custom).

Changing the calculation method used for columns (automatic or custom) Ocultar los detalles

<Control used>.TotalsEnabled = <New method>
<Control used>: Control name
Name of Table or TreeView Table control containing the column calculations (automatic or custom).
<New method>: Boolean
  • True to force the execution of column calculations (automatic or custom) in the control,
  • False not to perform the column calculations (automatic or custom).
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: 25/06/2025

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