Back to FabImage Library websiteYou are here:
Start »
Function Reference »
All Functions »
Array Basics »
FisFilter_SetArrayArrayElement
FisFilter_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: |
fis |
Module: |
FoundationLite |
Sets an element of an array of arrays to a new value.
Syntax
void fis::FisFilter_SetArrayArrayElement
(
ftl::Array<ftl::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. |