Skip to content
On this page

[mxcad_2d API documentation] (../README. md)/[2d] (../modules/2d. md)/McDbLayerTableRecord

Class: McDbLayerTableRecord

2d.McDbLayerTableRecord

Represents a layer table that records objects and implements attribute related operation functions for layers.

Example

ts
//Add Layer
import { McCmColor, MxCpp, McDbLayerTableRecord, McDb } from "mxcad"

const mxcad = MxCpp.getCurrentMxCAD();
//Construct a new layer table to record objects
const layer = new McDbLayerTableRecord()
//Set layer color
layer.color = new McCmColor(0, 0, 0)
//Set whether the layer is frozen
layer.isFrozen = true
//Set whether the layer is locked
layer.isLocked = true
//Set whether the layer is turned off
layer.isOff = true
//Set layer line width
layer.lineWeight = McDb.LineWeight.kLnWt018
//Set layer name
Layer.name="Layer Name"
//Retrieve the current layer table
const layerTable = mxcad.getDatabase().getLayerTable();
//Add layers to the chart
const objId = layerTable.add(layer)
mxcad.updateDisplay()

Hierarchy

Table of contents

Constructors

Properties

Accessors

Methods

Constructors

constructor

new McDbLayerTableRecord(imp?)

Constructor.

Example

ts
import { McDbLayerTableRecord } from "mxcad";

const layerRec = new McDbLayerTableRecord()

Parameters

NameTypeDescription
imp?AnyInternal implementation object

Overrides

McDbObject.constructor

Properties

imp

imp: any = 0

Internal implementation object.

Inherited from

McDbObject.imp

Accessors

color

get color(): McCmColor

Get or set the layer color.

Example

ts
import { McDbLayerTableRecord, McCmColor } from "mxcad";

const layerRec = new McDbLayerTableRecord();
layerRec.color = new McCmColor(255,255,255);
console.log(layerRec.color) //(255,255,255)

Returns

McCmColor

set color(val): void

Parameters

NameType
valMcCmColor

Returns

void


dxf0

get dxf0(): string

Obtain the type name of the object's DXF group code, which is the same as the DXF group code in AutoCAD. For example, the type name of the line is McDbLine, and the group code value for DXF0 is: LINE and DXF0 group code values can be used for type filtering when constructing sets.

Returns

string

Inherited from

McDbObject.dxf0


isFrozen

get isFrozen(): boolean

Get or set whether the layer is frozen.

Example

ts
import { McDbLayerTableRecord } from "mxcad";

const layerRec = new McDbLayerTableRecord();
layerRec.isFrozen = true;
console.log(layerRec.isFrozen)//true

Returns

boolean

set isFrozen(val): void

Parameters

NameType
valboolean

Returns

void


isLocked

get isLocked(): boolean

Get or set whether the layer is locked.

Example

ts
import { McDbLayerTableRecord } from "mxcad";

const layerRec = new McDbLayerTableRecord();
layerRec.isLocked = true;
console.log(layerRec.isLocked)//true

Returns

boolean

set isLocked(val): void

Parameters

NameType
valboolean

Returns

void


isOff

get isOff(): boolean

Get or set whether the layer is turned off.

Example

ts
import { McDbLayerTableRecord } from "mxcad";

const layerRec = new McDbLayerTableRecord();
layerRec.isOff = true;
console.log(layerRec.isOff)//true

Returns

boolean

set isOff(val): void

Parameters

NameType
valboolean

Returns

void


lineWeight

get lineWeight(): LineWeight

Get or set layer line width.

Example

ts
import { McDbLayerTableRecord, McDb } from "mxcad";

const layerRec = new McDbLayerTableRecord();
layerRec.lineWeight = McDb.LineWeight.kLnWt015;
console.log(layerRec.lineWeight)//15

Returns

LineWeight

set lineWeight(val): void

Parameters

NameType
valLineWeight

Returns

void


linetypeObjectId

get linetypeObjectId(): McObjectId

Get or set the layer line type object ID.

Example

ts
import { McDbLayerTableRecord } from "mxcad";

const layerRec = new McDbLayerTableRecord();
console.log(layerRec.linetypeObjectId)

Returns

McObjectId

set linetypeObjectId(val): void

Parameters

NameType
valMcObjectId

Returns

void


name

get name(): string

Get or set the layer name.

Example

ts
import { McDbLayerTableRecord } from "mxcad";

const layerRec = new McDbLayerTableRecord();
LayerRec.name="Test Layer";
Console. log (layerRec. name)//Test layer

Returns

string

set name(val): void

Parameters

NameType
valstring

Returns

void


objectName

get objectName(): string

Get the object name.

Example

ts
import { McRxObject } from 'mxcad';

let obj = new McRxObject();
console.log(obj.objectName);

Returns

string

Return object name

Inherited from

McDbObject.objectName

Methods

assertObjectModification

assertObjectModification(autoUndo?): number

Setting the state of the object to be changed can automatically trigger the update display function to update the display. For example, if the block table record is updated and the block reference needs to be notified to update the display, this function can be called.

Example

ts
//Assuming obj is a database object
obj.assertObjectModification()

Parameters

NameTypeDefault value
autoUndobooleanfalse

Returns

number

Inherited from

McDbObject.assertObjectModification


clone

clone(): null | McDbObject

Clone objects.

Example

ts
//Assuming obj is a database object
const obj_clone = obj.clone();

Returns

null | McDbObject

The cloned object.

Inherited from

McDbObject.clone


createExtensionDictionary

createExtensionDictionary(): boolean

Create extended dictionary data for objects

Example

ts
//Assuming obj is a database object
const res = obj.createExtensionDictionary();

Returns

boolean

Inherited from

McDbObject.createExtensionDictionary


erase

erase(): boolean

Delete object.

Example

ts
//Assuming obj is a database object
const res = obj.erase();
console.log(res);

Returns

boolean

Whether the deletion was successful.

Inherited from

McDbObject.erase


getDatabase

getDatabase(): McDbDatabase

Get the database where the object is located

Example

ts
//Assuming obj is a database object
const data = obj.getDatabase();

Returns

McDbDatabase

Return to database

Inherited from

McDbObject.getDatabase


getDatabaseIndexId

getDatabaseIndexId(): number

Get the index ID of the object

Example

ts
//Assuming obj is a database object
const id = obj.getDatabaseIndexId();

Returns

number

Inherited from

McDbObject.getDatabaseIndexId


getExtensionDictionary

getExtensionDictionary(): McDbDictionary

Obtain the extended dictionary data of the object

Example

ts
//Assuming obj is a database object
const id = obj.getOwnerID();

Returns

McDbDictionary

Expand dictionary data

Inherited from

McDbObject.getExtensionDictionary


getGripPoints

getGripPoints(): McGePoint3dArray

Get the control points of the object

Example

ts
//Assuming obj is a database object
const ptArr = obj.getGripPoints();

Returns

McGePoint3dArray

Inherited from

McDbObject.getGripPoints


getHandle

getHandle(): string

Obtain object handle

Example

ts
//Assuming obj is a database object
const handle = obj.getHandle();

Returns

string

Return object handle

Inherited from

McDbObject.getHandle


getImp

getImp(): any

Retrieve internal implementation objects.

Example

ts
import { McRxObject } from 'mxcad';

let obj = new McRxObject();
let imp = obj.getImp();

Returns

any

Internal implementation object.

Inherited from

McDbObject.getImp


getJson

getJson(): string

Retrieve a string in JSON format.

Example

ts
import { McRxObject } from 'mxcad';

let obj = new McRxObject();
const json = obj.getJson()

Returns

string

A string in JSON format.

Inherited from

McDbObject.getJson


getObjectID

getObjectID(): McObjectId

Get the object ID.

Example

ts
import { McDbObject } from "mxcad";
const id = obj.getObjectID();

Returns

McObjectId

Object ID.

Inherited from

McDbObject.getObjectID


getOwnerID

getOwnerID(): number

Obtain the ID of the object owner

Example

ts
//Assuming obj is a database object
const id = obj.getOwnerID();

Returns

number

Inherited from

McDbObject.getOwnerID


initTempObject

initTempObject(imp): void

Initialize temporary objects.

Example

ts
import { McRxObject } from 'mxcad';

let obj = new McRxObject();
obj.initTempObject()

Parameters

NameTypeDescription
'imp''any'Internal implementation object

Returns

void

Inherited from

McDbObject.initTempObject


isErased

isErased(): boolean

Has the object been deleted

Example

ts
//Assuming obj is a database object
const res = obj.isErased();
console.log(res);

Returns

boolean

Inherited from

McDbObject.isErased


isHaveExtensionDictionary

isHaveExtensionDictionary(): boolean

Is there any extended dictionary data available

Example

ts
//Assuming obj is a database object
const res = obj.isHaveExtensionDictionary();

Returns

boolean

Inherited from

McDbObject.isHaveExtensionDictionary


isKindOf

isKindOf(sObjectName): boolean

Determine object type

Example

ts
import { McRxObject } from 'mxcad';

let obj = new McRxObject();
let isKind = obj.isKindOf('SomeObjectType');
console.log(isKind); //  Output: True or false

Parameters

NameTypeDescription
SOrtNamestringType Name

Returns

boolean

Return whether the object is of the target type

Inherited from

McDbObject.isKindOf


isNull

isNull(): any

Determine if it is an empty object

Example

ts
import { McRxObject } from 'mxcad';

let obj = new McRxObject();
console.log(obj.isNull()); //  Output: True or false

Returns

any

Inherited from

McDbObject.isNull


moveGripPointsAt

moveGripPointsAt(iIndex, dXOffset, dYOffset, dZOffset): any

Control points for moving objects

Example

ts
//Assuming obj is a database object
obj.moveGripPointsAt(1,10,10,10);

Parameters

NameTypeDescription
IIndexNumberIndex
DXOffsetnumberX-axis offset
DYOffsetnumberY-axis offset
DZOffsetnumberZ-axis offset

Returns

any

Inherited from

McDbObject.moveGripPointsAt


setJson

setJson(str): boolean

Set a string in JSON format.

Example

ts
import { McRxObject } from 'mxcad';

let obj = new McRxObject();
const res = obj.setJson('{"key": "value"}');
console.log(res)

Parameters

NameTypeDescription
StrstringJSON formatted string

Returns

boolean

Is the setting successful.

Inherited from

McDbObject.setJson


unErase

unErase(): boolean

Anti delete object.

Example

ts
//Assuming obj is a database object
const res = obj.unErase();
console.log(res);

Returns

boolean

Inherited from

McDbObject.unErase