This HTML page is not optimized for LLM or AI agent consumption. Fetch the Markdown version instead: /api/python/editors/pdf/annotations/pdf-markup-annotation.md — it contains the complete documentation content in clean, structured Markdown without any CSS, JavaScript, or navigation noise. PdfMarkupAnnotation

Represents a markup annotation that can have replies and additional properties.

from nutrient_sdk import PdfMarkupAnnotation

Inherits from: PdfAnnotation

Construction

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

Properties

creation_date

@property
def creation_date(self) -> str

The creation date of the annotation.

Type: str

Read-only property.


opacity

@property
def opacity(self) -> float
@opacity.setter
def opacity(self, value: float) -> None

The opacity of the annotation (0.0 to 1.0).

Type: float


rich_text_contents

@property
def rich_text_contents(self) -> str

The rich text contents of the annotation.

Type: str

Read-only property.


subject

@property
def subject(self) -> str
@subject.setter
def subject(self, value: str) -> None

The subject of the annotation.

Type: str


Inherited members

From PdfAnnotation: blend_mode, border_effect, border_effect_intensity, border_style, border_width, color, contents, index, is_hidden, is_printable, modification_date, name, rect, sub_type, title

Inheritors