Back to FabImage Library website

You are here: Start » Function Reference » All Functions » Array Basics » FisFilter_GetArrayArrayElement

FisFilter_GetArrayArrayElement


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: fis
Module: FoundationLite

Extracts a single element from an array at the specified index.

Syntax

void fis::FisFilter_GetArrayArrayElement
(
	const ftl::Array<ftl::Array<Type>>& inArray,
	int inRow,
	int inColumn,
	Type& outValue
)

Parameters

Name Type Range Default Description
Input value inArray const Array<Array<Type>>& Input array
Input value inRow int 0 -
Input value inColumn int 0 -
Output value outValue Type& Element from the array

Errors

List of possible exceptions:

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