Initializing help system before first use

getIndexSetByName Method

Retrieve an XPRBindexSet by name.

Namespace:   BCL
Assembly:  xprbdn (in xprbdn.dll) Version: 4.8.14.0
Syntax
C#
VB
public XPRBindexSet getIndexSetByName(
	string name
)

Parameters

name
Type:  SystemString
The index set name.

Return Value

Type:  XPRBindexSet
The XPRBindexSet corresponding to the given name, if found.
Examples
XPRBprob prob = new XPRBprob("NewProb"); XPRBindexSet idxset; prob.newIndexSet("IndexSet1"); prob.newIndexSet("IndexSet2"); ... idxset = prob.getIndexSetByName("IndexSet1");
See Also