@mlightcad/graphic-interface
Version:
The graphic-interface package provides the graphics interface for controlling how AutoCAD entities are displayed on screen. This package offers a simplified API compared to AutoCAD ObjectARX's AcGi classes, making it more developer-friendly while maintain
21 lines • 1.56 kB
JavaScript
export var AcGiMTextFlowDirection;
(function (AcGiMTextFlowDirection) {
AcGiMTextFlowDirection[AcGiMTextFlowDirection["LEFT_TO_RIGHT"] = 1] = "LEFT_TO_RIGHT";
AcGiMTextFlowDirection[AcGiMTextFlowDirection["RIGHT_TO_LEFT"] = 2] = "RIGHT_TO_LEFT";
AcGiMTextFlowDirection[AcGiMTextFlowDirection["TOP_TO_BOTTOM"] = 3] = "TOP_TO_BOTTOM";
AcGiMTextFlowDirection[AcGiMTextFlowDirection["BOTTOM_TO_TOP"] = 4] = "BOTTOM_TO_TOP";
AcGiMTextFlowDirection[AcGiMTextFlowDirection["BY_STYLE"] = 5] = "BY_STYLE";
})(AcGiMTextFlowDirection || (AcGiMTextFlowDirection = {}));
export var AcGiMTextAttachmentPoint;
(function (AcGiMTextAttachmentPoint) {
AcGiMTextAttachmentPoint[AcGiMTextAttachmentPoint["TopLeft"] = 1] = "TopLeft";
AcGiMTextAttachmentPoint[AcGiMTextAttachmentPoint["TopCenter"] = 2] = "TopCenter";
AcGiMTextAttachmentPoint[AcGiMTextAttachmentPoint["TopRight"] = 3] = "TopRight";
AcGiMTextAttachmentPoint[AcGiMTextAttachmentPoint["MiddleLeft"] = 4] = "MiddleLeft";
AcGiMTextAttachmentPoint[AcGiMTextAttachmentPoint["MiddleCenter"] = 5] = "MiddleCenter";
AcGiMTextAttachmentPoint[AcGiMTextAttachmentPoint["MiddleRight"] = 6] = "MiddleRight";
AcGiMTextAttachmentPoint[AcGiMTextAttachmentPoint["BottomLeft"] = 7] = "BottomLeft";
AcGiMTextAttachmentPoint[AcGiMTextAttachmentPoint["BottomCenter"] = 8] = "BottomCenter";
AcGiMTextAttachmentPoint[AcGiMTextAttachmentPoint["BottomRight"] = 9] = "BottomRight";
})(AcGiMTextAttachmentPoint || (AcGiMTextAttachmentPoint = {}));
//# sourceMappingURL=AcGiTextStyle.js.map