---
title: "Remove annotation tool in MAUI PDF viewer | Nutrient"
canonical_url: "https://www.nutrient.io/guides/maui/user-interface/annotation-toolbar/remove-a-tool/"
md_url: "https://www.nutrient.io/guides/maui/user-interface/annotation-toolbar/remove-a-tool.md"
last_updated: "2026-05-15T19:10:05.048Z"
description: "Learn to remove specific items from the MAUI PDF viewer annotation toolbar using the Nutrient MAUI SDK API for enhanced customization."
---

# Removing an annotation tool from our viewer toolbar

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

The example below removes the blend mode item from the ink annotation toolbar when loading the PDF:

```csharp

var blendModeItem = PSPDFKitController.AnnotationToolbar.ToolbarItems[AnnotationType.Ink].FirstOrDefault(item => item is BlendModeAnnotationToolbarItem);
if (blendModeItem == null)
{
return;
}

PSPDFKitController.AnnotationToolbar.ToolbarItems[AnnotationType.Ink].Remove(blendModeItem);

```

---

## Related pages

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

