Initializing help system before first use

getID Method

Get the ID of a cut. The default ID value is 0.

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

Return Value

Type:  Int32
The cut ID value.
Examples
XPRBprob prob = new XPRBprob("NewProb"); XPRBcut cut = new XPRBcut(); cut.setID(1234); ... System.Console.Writeln("Cut ID is: " + cut.getID());
See Also