ImageProperties 1.0 control documentation

Converts bytes array to Int32Fraction data type.

[Visual Basic]
Overloads Public Shared Function Parse( _
   ByVal value As Byte(), _
   ByVal startIndex As Integer _
) As Int32Fraction
[C#]
public static Int32Fraction Parse(
   byte[] value,
   int startIndex
);

Parameters

value
An one-dimensional byte array to get value. Should has at least 8 items after startIndex.
startIndex
The starting index of the value.

Return Value

An Int32Fraction value equivalent to bytes array.

Remarks

Gets first 4 bytes within the range of elements in array that extends from startIndex and converts to Int32 fraction's numerator and second 4 bytes to Int32 fraction's denominator.

See Also

Int32Fraction Class | ElementIT.ImageProperties Namespace | Int32Fraction.Parse Overload List