ts-visio - v1.16.27
    Preparing search index...

    Interface ConnectorData

    Raw data extracted from the page XML for a single connector shape. Returned by ShapeReader.readConnectors() and wrapped by the Connector class.

    interface ConnectorData {
        beginArrow: string;
        endArrow: string;
        fromPort: ConnectionTarget;
        fromShapeId: string | undefined;
        id: string;
        style: ConnectorStyle;
        toPort: ConnectionTarget;
        toShapeId: string | undefined;
    }
    Index

    Properties

    beginArrow: string

    Begin-arrow head value (Visio ArrowHeads integer string).

    endArrow: string

    End-arrow head value (Visio ArrowHeads integer string).

    Connection point used on the from-shape.

    fromShapeId: string | undefined

    ID of the shape at the connector's begin-point (BeginX). undefined if the begin endpoint is not connected to any shape.

    id: string

    Visio shape ID of the connector (1D shape).

    Line style extracted from the connector's Line section.

    Connection point used on the to-shape.

    toShapeId: string | undefined

    ID of the shape at the connector's end-point (EndX). undefined if the end endpoint is not connected to any shape.