@mlightcad/common
Version:
[](https://opensource.org/licenses/MIT) [](https://www.npmjs.com/package/@mlightcad/common)
18 lines • 786 B
JavaScript
/**
* @enum AcCmColorMethod
* Represents the method used to determine an entity's color in AutoCAD.
*/
export var AcCmColorMethod;
(function (AcCmColorMethod) {
/** Explicit RGB color */
AcCmColorMethod[AcCmColorMethod["ByColor"] = 1] = "ByColor";
/** AutoCAD Color Index (ACI) */
AcCmColorMethod[AcCmColorMethod["ByACI"] = 2] = "ByACI";
/** Color inherited from the entity's layer */
AcCmColorMethod[AcCmColorMethod["ByLayer"] = 3] = "ByLayer";
/** Color inherited from the entity's block */
AcCmColorMethod[AcCmColorMethod["ByBlock"] = 4] = "ByBlock";
/** Uninitialised or invalid color state */
AcCmColorMethod[AcCmColorMethod["None"] = 0] = "None";
})(AcCmColorMethod || (AcCmColorMethod = {}));
//# sourceMappingURL=AcCmColorMethod.js.map