This HTML page is not optimized for LLM or AI agent consumption. Fetch the Markdown version instead: /guides/maui/user-interface/annotation-toolbar/rearrange.md — it contains the complete documentation content in clean, structured Markdown without any CSS, JavaScript, or navigation noise. Rearrange annotation tools in MAUI PDF viewer | Nutrient

Nutrient MAUI SDK comes with a customizable annotation toolbar that, by default, includes a number of predefined items. You can rearrange toolbar items using our API.

The example below moves the first item that appears in the ink annotation toolbar to the last position:

PSPDFKitController.AnnotationToolbar.ToolbarItems[
AnnotationType.Ink
].Move(
0,
PSPDFKitController.AnnotationToolbar.ToolbarItems[AnnotationType.Ink]
.Count - 1,
);