Add method
- Last UpdatedJul 23, 2024
- 1 minute read
Add a condition object to the collection.
Class
IConditions
Syntax
[C#]
void Add(
EConditionType Kind,
object value,
bool Negation
);
[Visual C++]
HRESULT Add(
[in] EConditionType Kind,
[in] VARIANT Value,
[in, optional, defaultvalue( -1 )]
VARIANT_BOOL negation
);
Parameters
Kind
Indicates the type of condition to be used by the query.
Value
The value to be searched for. Meaning is based on the Kind parameter.
negation
Negation. To NOT the expression, pass False for negation.