Skip to content
On this page

mxcad_2d API 文档 / 2d / McCmColor

Class: McCmColor

2d.McCmColor

表示一个颜色对象,可以通过颜色索引或 RGB 值来设置颜色。

Example

ts
import { McCmColor, McDbEntity} from "mxcad";
  //设置对象颜色
  const ent = new McDbEntity();
  const color = new McCmColor(255,0,0);
  ent.trueColor = color;
ts
import { McCmColor, McDbEntity} from "mxcad";
  // 修改对象颜色
  async function Mx_Test_ChangeColor() {
    // 选择标注对象
    let getEntity = new MxCADUiPrEntity();
    getEntity.setMessage("选择标注对象");
    let id = await getEntity.go();
    if (!id.isValid()) return;

    let ent = id.getMcDbEntity();// 获取目标McDbEntity对象
    if (!ent) return;
    ent.trueColor = new McCmColor(255, 0, 255);// 修改对象颜色
  }

Table of contents

Constructors

Accessors

Methods

Constructors

constructor

new McCmColor(red?, green?, blue?)

构造函数。设置 RGB 值。

Parameters

NameTypeDescription
red?number | object
green?number绿
blue?number

Example

ts
import { McCmColor } from "mxcad"

const red_color:McCmColor = new McCmColor(255, 0, 0);

const colorObj = { red:0, green:255, blue:0};
const green_color:McCmColor = new McCmColor(colorObj);

Accessors

blue

get blue(): number

获取或设置rgb值中的蓝色值,设置数值范围0~255。

Returns

number

Example

ts
import { McCmColor } from "mxcad"

const color = new McCmColor();
color.blue = 188;
console.log(color.blue)

set blue(val): void

Parameters

NameType
valnumber

Returns

void


colorIndex

get colorIndex(): number

获取或设置颜色索引。

Returns

number

Example

ts
import { McCmColor, ColorIndexType } from "mxcad"

const color = new McCmColor();
color.colorIndex = ColorIndexType.kBylayer;//设置颜色随层
console.log(color.colorIndex);

set colorIndex(val): void

Parameters

NameType
valnumber

Returns

void


green

get green(): number

获取或设置rgb值中的绿色值,设置数值范围0~255。

Returns

number

Example

ts
import { McCmColor } from "mxcad"

const color = new McCmColor();
color.green = 188;
console.log(color.green)

set green(val): void

Parameters

NameType
valnumber

Returns

void


method

get method(): number

方法。

Returns

number

set method(val): void

Parameters

NameType
valnumber

Returns

void


n

get n(): number

n

Returns

number

set n(val): void

Parameters

NameType
valnumber

Returns

void


red

get red(): number

获取或设置rgb值中的红色值,设置数值范围0~255。

Returns

number

Example

ts
import { McCmColor } from "mxcad"

const color = new McCmColor();
color.red = 188;
console.log(color.red)

set red(val): void

Parameters

NameType
valnumber

Returns

void

Methods

clone

clone(): McCmColor

刻隆一个颜色对象

Returns

McCmColor

返回克隆后的颜色对象

Example

ts
import { McCmColor } from "mxcad"

const red_color:McCmColor = new McCmColor(255, 0, 0);
const copy_color:McCmColor = red_color.clone();

copy

copy(val): McCmColor

复制颜色对象的值。

Parameters

NameTypeDescription
valMcCmColor颜色对象

Returns

McCmColor

Example

ts
import { McCmColor } from "mxcad"

const color:McCmColor = new McCmColor();
const red_color:McCmColor = new McCmColor(255, 0, 0);
color.copy(red_color);

getColorString

getColorString(): string

得到颜色说明字符串

Returns

string

颜色说明字符串

Example

ts
import { McCmColor } from "mxcad"

const color = new McCmColor();
const str = color.getColorString();
console.log(str);

getColorValue

getColorValue(layerId?, blkRefId?): string

得到颜色值字符串,十六进制格式,layerId:颜色随层时会取layerId指向的层颜色,blkRefId:颜色随块时,会取blkRefId指向的块颜色

Parameters

NameTypeDescription
layerId?McObjectId图层ID
blkRefId?McObjectId块记录ID

Returns

string

颜色值字符串

Example

ts
import { McCmColor } from "mxcad"

const color = new McCmColor();
const val = color.getColorValue();
console.log(val);

getImp

getImp(): any

获取内部实现对象

Returns

any

内部实现对象

Example

ts
import { McCmColor } from "mxcad"

const color = new McCmColor();
const imp = color.getImp();

getStyle

getStyle(): string

获取 css 颜色的样式 如rgb(0, 0, 0)

Returns

string


setColorIndex

setColorIndex(colorIndex): void

设置颜色索引,根据颜色索引值设置颜色类型。

Parameters

NameTypeDescription
colorIndexnumber颜色索引。

Returns

void

Example

ts
import { McCmColor, ColorIndexType } from "mxcad"

const color = new McCmColor();
color.setColorIndex(ColorIndexType.kBylayer);//设置颜色随层

setRGB

setRGB(red, green, blue): void

设置 RGB 值。

Parameters

NameTypeDescription
rednumber红色值。
greennumber绿色值。
bluenumber蓝色值。

Returns

void

Example

ts
import { McCmColor } from "mxcad"

const color = new McCmColor();
color.setRGB(255,0,0);//红色