Java.Text.Bidi.ReorderVisually Method
Reorders a range of objects according to their specified levels.

Syntax

[Android.Runtime.Register("reorderVisually", "([BI[Ljava/lang/Object;II)V", "")]
public static void ReorderVisually (byte[] levels, int levelStart, Java.Lang.Object[] objects, int objectStart, int count)

Parameters

levels
the level array, which is already determined.
levelStart
the start offset of the range of the levels.
objects
the object array to reorder.
objectStart
the start offset of the range of objects.
count
the count of the range of objects to reorder.

Exceptions

TypeReason
Java.Lang.IllegalArgumentExceptionif count, levelStart or objectStart is negative; if count > levels.length - levelStart or if count > objects.length - objectStart.

Remarks

Reorders a range of objects according to their specified levels. This is a convenience function that does not use a Bidi object. The range of objects at index from objectStart to objectStart + count will be reordered according to the range of levels at index from levelStart to levelStart + count.

[Android Documentation]

Requirements

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