Initializing help system before first use

Get Method (Int32, Int32[])

Get the cell content associated to the given index.

Namespace:   Mosel
Assembly:  xprmdn (in xprmdn.dll) Version: 5.0.2.0
Syntax
C#
public XPRMValue Get(
	int ndx1,
	params int[] ndx2p
)

Parameters

ndx1
Type:  SystemInt32
The first tuple of the array cell index
ndx2p
Type:  SystemInt32
The remainder of the array cell index

Return Value

Type:  XPRMValue
Cell associated to the given index
Exceptions
Exception Condition
XPRMException If the incorrect number of array index tuples is given
Examples
XPRMValue val = MyXPRMArray.Get(4, 3, 2, 1);
See Also