Gets the values at the specified position and length.
Namespace:
FreeImageAPI
Assembly:
FreeImageNET (in FreeImageNET.dll)
Syntax
C# |
---|
public T[] GetValues(
int index,
int length
) |
Visual Basic (Declaration) |
---|
Public Function GetValues ( _
index As Integer, _
length As Integer _
) As T() |
Visual C++ |
---|
public:
array<T>^ GetValues(
int index,
int length
) |
Parameters
- index
- Type: System..::.Int32
A 32-bit integer that represents the position
of the array elements to get.
- length
- Type: System..::.Int32
A 32-bit integer that represents the length
of the array elements to get.
Return Value
The values at the specified position and length.
Exceptions
Exception | Condition |
---|
System..::.ArgumentOutOfRangeException |
index is outside the range of valid indexes
for the unmanaged array or length is greater than the number of elements
from index to the end of the unmanaged array. |
Version Information
FreeImage.NET
Supported in: 3.11.0, 3.12.0, 3.13.0, 3.13.1
See Also