You are here: Start » FIL.NET » Function Reference » Image » Image Basics » FIL.SetImageColumn
Sets pixel values in a single entire column of an image.
Namespace: | FilNet |
---|---|
Assembly: | FIL.NET.dll |
Syntax
C++
C#
public static void SetImageColumn ( FilNet.Image ioImage, int inColumnIndex, IList<float> inValues )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
ioImage | FilNet.Image | ||||
![]() | inColumnIndex | int | <0, 65535> | Selects a column of the input image. | |
![]() | inValues | System.Collections.Generic.IList<float> | New values for specified column. |
Errors
List of possible exceptions:
Error type | Description |
---|---|
DomainError | Channel index out of range in SetImageColumn. |
DomainError | Column index out of range in SetImageColumn. |
DomainError | Size of inValues array and image height are not equal in SetImageColumn. |