UNPKG

@mlightcad/common

Version:

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![npm version](https://img.shields.io/npm/v/@mlightcad/common.svg)](https://www.npmjs.com/package/@mlightcad/common)

17 lines 487 B
/** * @enum AcCmColorMethod * Represents the method used to determine an entity's color in AutoCAD. */ export declare enum AcCmColorMethod { /** Explicit RGB color */ ByColor = 1, /** AutoCAD Color Index (ACI) */ ByACI = 2, /** Color inherited from the entity's layer */ ByLayer = 3, /** Color inherited from the entity's block */ ByBlock = 4, /** Uninitialised or invalid color state */ None = 0 } //# sourceMappingURL=AcCmColorMethod.d.ts.map