Back to Adaptive 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
ioArray Array<Array<Type>>&
inRow int 0 -
inColumn int 0 -
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.