Represents normalized block content stored by a multileader.

interface AcDbMLeaderBlockContent {
    blockContentId?: string;
    blockHandle?: string;
    color?: number;
    normal?: AcGeVector3d;
    position?: AcGePoint3d;
    rotation: number;
    scale: AcGeVector3d;
    transformationMatrix: number[];
}

Properties

blockContentId?: string
blockHandle?: string
color?: number
normal?: AcGeVector3d
position?: AcGePoint3d
rotation: number
transformationMatrix: number[]