Sets the value at position row, col in 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 void SetArrayVal2D(
	this uint[] data,
	uint value,
	int row,
	int col,
	int width
)

Parameters

data
Type: array<System..::..UInt32>[]()[][]
The data array.
value
Type: System..::..UInt32
The value to set at position row, col.
row
Type: System..::..Int32
The row.
col
Type: System..::..Int32
The column.
width
Type: System..::..Int32
The width of the data array.

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