Java.Nio.FloatBuffer.Put Method
Writes floats from the given float array, starting from the specified offset, to the current position and increases the position by the number of floats written.

Syntax

[Android.Runtime.Register("put", "([FII)Ljava/nio/FloatBuffer;", "GetPut_arrayFIIHandler")]
public virtual FloatBuffer Put (float[] src, int off, int len)

Parameters

src
the source float array.
srcOffset
the offset of float array, must not be negative and not greater than src.length.
floatCount
the number of floats to write, must be no less than zero and no greater than src.length - srcOffset.

Returns

Documentation for this section has not yet been entered.

Exceptions

TypeReason
Java.Nio.BufferOverflowExceptionif remaining() is less than floatCount.
Java.Lang.IndexOutOfBoundsExceptionif either srcOffset or floatCount is invalid.
Java.Nio.ReadOnlyBufferExceptionif no changes may be made to the contents of this buffer.

Remarks

Writes floats from the given float array, starting from the specified offset, to the current position and increases the position by the number of floats written.

[Android Documentation]

Requirements

Namespace: Java.Nio
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 1