Initializing help system before first use

Addition Operator (XPRBctr, Double)

Add a double to a constraint.

Namespace:   BCL
Assembly:  xprbdn (in xprbdn.dll) Version: 4.8.14.0
Syntax
C#
VB
public static XPRBctr operator +(
	XPRBctr lhs,
	double d
)

Parameters

lhs
Type:  BCLXPRBctr
The XPRBctr to be added to.
d
Type:  SystemDouble
The double to add.

Return Value

Type:  XPRBctr
The modified XPRBctr.
Examples
XPRBctr ctr = new XPRBctr(); ... ctr = ctr+3.6;
See Also