Back to Aurora Vision Library Lite website

You are here: Start » All Functions » Array Basics » AvsFilter_SetArrayArrayElement

AvsFilter_SetArrayArrayElement


This is Filter Equivalent. This function may be present in generated code, but should not be used in hand-written code.

Header: STD.h
Namespace: avs

Sets an element of an array of arrays to a new value.

Syntax

void avs::AvsFilter_SetArrayArrayElement
(
	atl::Array<atl::Array<Type>>& ioArray,
	int inRow,
	int inColumn,
	const Type& inNewValue
)

Parameters

Name Type Range Default Description
Input will be modified ioArray Array<Array<Type>>&
Input value inRow int 0 -
Input value inColumn int 0 -
Input value inNewValue const Type& Value to be set

Errors

List of possible exceptions:

Error type Description
DomainError Column index out of range in SetArrayArrayElement.
DomainError Row index out of range in SetArrayArrayElement.