Represents a DXF MTEXT (multiline text) entity.

interface IMTextEntity {
    attachmentPoint?: number;
    height?: number;
    position: DxfPoint;
    rotation?: number;
    string?: string;
    tag?: string;
    text?: string;
    width?: number;
}

Hierarchy

  • IEntity
    • IMTextEntity

Properties

attachmentPoint?: number

Attachment point for text alignment.

height?: number

Text height.

position: DxfPoint

Position of the text insertion point.

rotation?: number

Rotation angle of the text in degrees.

string?: string

Optional string content (alternative key).

tag?: string

Attribute tag associated with the text.

text?: string

Text content.

width?: number

Width of the multiline text block.