Retrievies the value at position row, col from a data array of width width.

Namespace: VVVV.Utils.SlimDX
Assembly: VVVV.Utils3rdParty (in VVVV.Utils3rdParty.dll) Version: 1.0.4694.10872

Syntax

C#
public static uint GetArrayVal2D(
	this uint[] data,
	int row,
	int col,
	int width
)

Parameters

data
Type: array<System..::..UInt32>[]()[][]
The data array to retrieve the value from.
row
Type: System..::..Int32
The row.
col
Type: System..::..Int32
The column.
width
Type: System..::..Int32
The width of the data array.

Return Value

The value at position row, col.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type . When you use instance method syntax to call this method, omit the first parameter. For more information, see or .

See Also