---
title: "Rearrange annotation tools in MAUI PDF viewer | Nutrient"
canonical_url: "https://www.nutrient.io/guides/maui/user-interface/annotation-toolbar/rearrange/"
md_url: "https://www.nutrient.io/guides/maui/user-interface/annotation-toolbar/rearrange.md"
last_updated: "2026-06-08T17:11:05.565Z"
description: "Rearrange the annotation toolbar in the MAUI PDF viewer by using the API to customize toolbar items for enhanced user experience and functionality."
---

# Rearranging annotation tools in our viewer toolbar

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:

```js

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

```

---

## Related pages

- [Create custom annotation tools in MAUI PDF viewer](/guides/maui/user-interface/annotation-toolbar/create-a-new-tool.md)
- [Customizing an existing annotation tool in our viewer toolbar](/guides/maui/user-interface/annotation-toolbar/customize-existing-tools.md)
- [Removing an annotation tool from our viewer toolbar](/guides/maui/user-interface/annotation-toolbar/remove-a-tool.md)

