Initializing help system before first use

isValid Method

Checks whether the constraint object is valid.

Namespace:   BCL
Assembly:  xprbdn (in xprbdn.dll) Version: 37.1.1.0
Syntax
C#
VB
public bool isValid()

Return Value

Type:  Boolean
The boolean true if the constraint object is valid.
Examples
XPRBprob prob = new XPRBprob("NewProb"); XPRBctr ctr = prob.newCtr("Constraint1"); ... if(ctr.isValid()) DoSomething();
See Also