Represents block content input data for a multileader.

interface AcDbMLeaderBlockContentLike {
    blockContentId?: string;
    blockHandle?: string;
    color?: number;
    normal?: AcGeVector3dLike;
    position?: AcGeVector3dLike;
    rotation?: number;
    scale?: AcGeVector3dLike;
    transformationMatrix?: number[];
}

Properties

blockContentId?: string
blockHandle?: string
color?: number
position?: AcGeVector3dLike
rotation?: number
transformationMatrix?: number[]