Initializing help system before first use

getRange Method

Retrieves the constraint range.

Namespace:   BCL
Assembly:  xprbdn (in xprbdn.dll) Version: 4.8.14.0
Syntax
C#
VB
public int getRange(
	out double lw,
	out double up
)

Parameters

lw
Type:  SystemDouble
The out double which will contain the low range value.
up
Type:  SystemDouble
The out double which will contain the upper range value.

Return Value

Type:  Int32
0 on success
Examples
XPRBprob prob = new XPRBprob("NewProb"); XPRBctr ctr = prob.newCtr("Constraint1"); double loRng, hiRng; ... int returned = ctr.getRange(out loRng, out hiRng);
See Also