Determines whether any rows in the specified table window match certain flags. If you set flagsOn to zero (0) and flagsOff to zero (0), SalTblAnyRows returns TRUE if the table window contains any rows at all, regardless of their flags.

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 SalBoolean AnyRows(
	SalNumber flagsOn,
	SalNumber flagsOff
)

Parameters

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

Return Value

true if any

See Also