Nutrient Web SDK
    Preparing search index...

    Interface UpdatedTextBlock

    Describes the properties used to update a text block.

    This is a partial text block that contains the id of the text block and the new text. It is used to update the text block in the document.

    interface UpdatedTextBlock {
        anchor?: { x?: number; y?: number };
        id: string;
        maxWidth?: number;
        text?: string;
    }
    Index

    Properties

    anchor?: { x?: number; y?: number }

    The anchor point of the text block.

    id: string

    Unique identifier for the text block.

    maxWidth?: number

    The maximum width of the text block.

    text?: string

    The new text content of the text block.