Computes the average of all column values or only specified column values in a table window. Use row flags constants to specify the rows to use in the computation. For example, you can choose to average only the values of modified rows.

Namespace: PPJ.Runtime.Windows
Assembly: PPJ.Runtime.2 (in PPJ.Runtime.2.dll) Version: 2.0.1044.0 (2.0.1044.5276)

Syntax

C#
public decimal Average(
	int flagsOn,
	int flagsOff
)

Parameters

flagsOn
Type: System..::..Int32
The flags that the row should have. You can combine ROW* flags using the OR (|) operator.
flagsOff
Type: System..::..Int32
The flags that the row should not have. You can combine ROW* flags using the OR (|) operator:

Return Value

Average

See Also