Sets or clears row 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 SetFlagsAnyRows(
	SalNumber flags,
	SalBoolean on,
	SalNumber flagsOn,
	SalNumber flagsOff
)

Parameters

flags
Type: PPJ.Runtime..::..SalNumber
The flags to change. You can combine flag values using the OR (|) operator.
on
Type: PPJ.Runtime..::..SalBoolean
Whether to set (TRUE) or clear (false) the specified flags.
flagsOn
Type: PPJ.Runtime..::..SalNumber
The flags that the rows should have. You can combine flag values using the OR (|) operator. Set flagsOn to zero (0) and flagsOff to zero (0) to specify all rows.
flagsOff
Type: PPJ.Runtime..::..SalNumber
The flags that the rows should not have. You can combine flag values using the OR (|) operator. Set flagsOn to zero (0) and flagsOff to zero (0) to specify all rows.

Return Value

bool

See Also