---
title: "PdfSignatureField"
canonical_url: "https://www.nutrient.io/api/python/editors/pdf/formfields/pdf-signature-field/"
md_url: "https://www.nutrient.io/api/python/editors/pdf/formfields/pdf-signature-field.md"
last_updated: "2026-06-09T10:32:42.528Z"
description: "Represents a signature form field in a PDF document. Signature fields are used for electronic signatures."
---

Represents a signature form field in a PDF document. Signature fields are used for electronic signatures.

```python

from nutrient_sdk import PdfSignatureField

```

**Inherits from:** [`PdfFormField`](/api/python/editors/pdf/formfields/pdf-form-field/)

## Construction

`PdfSignatureField` cannot be instantiated directly. Obtain instances through static factory methods or via other SDK classes.

## Properties

### is_signed

```python

@property
def is_signed(self) -> bool

```

Whether the signature field has been signed.

**Type:** `bool`

*Read-only property.*

---

## Inherited members

From [`PdfFormField`](../pdf-form-field/): `child`, `child_count`, `default_value`, `field_type`, `full_name`, `is_read_only`, `is_required`, `is_terminal`, `name`, `parent`, `value`, `widget`, `widget_count`, `remove_child_at`

---

## Related pages

- [All public classes import directly from the top-level package:](/api/python/editors/pdf/formfields.md)
- [Pdf Combo Box Field](/api/python/editors/pdf/formfields/pdf-combo-box-field.md)
- [Pdf Check Box Field](/api/python/editors/pdf/formfields/pdf-check-box-field.md)
- [Pdf Form Field Collection](/api/python/editors/pdf/formfields/pdf-form-field-collection.md)
- [Pdf Form Field](/api/python/editors/pdf/formfields/pdf-form-field.md)
- [Pdf List Box Field](/api/python/editors/pdf/formfields/pdf-list-box-field.md)
- [Pdf Push Button Field](/api/python/editors/pdf/formfields/pdf-push-button-field.md)
- [Pdf Radio Button Field](/api/python/editors/pdf/formfields/pdf-radio-button-field.md)
- [Pdf Text Field](/api/python/editors/pdf/formfields/pdf-text-field.md)

