[mxcad_2d API documentation] (../README. md)/[2d] (../modules/2d. md)/McDbLayerTable
Class: McDbLayerTable
2d.McDbLayerTable
McDbLayerTable is a layer table in the database, responsible for managing all layer records in the current drawing.
Description
This class is used to manage a collection of CAD layers, making it easy to query, add, judge, and access layer objects. It can accomplish: -Retrieve all layer record IDs from the layer table; -Add layers to the layer table; -Search for a layer by name; -Determine whether a certain layer exists; -Subsequently, the real McDbLayerTableRecord will be obtained through the McObjectid ID for property editing.
Usage:
- First, retrieve the current layer table from the database object;
- Call getAllRecordId() to obtain all layer IDs;
- Use add()/get()/has() to manage layers;
- Continue to set attributes such as color, status, and line width for the returned layer records.
Summary: In practical development, McDbLayerTable is mainly used for unified management of layer resources and is the core entry point for layer addition, deletion, query, modification, and layer state control.
Example
import { MxCpp, McDbLayerTable } from "mxcad";
//Create a layer table and add layer records to it.
async function testLayerTable() {
const mxcad = MxCpp.getCurrentMxCAD();
const layerTable: McDbLayerTable = mxcad.getDatabase().getLayerTable();
const aryId = layerTable.getAllRecordId();
Console.log ("Number of layers:", aryId. length);
aryId.forEach((id) => {
const layerRec = id.getMcDbLayerTableRecord();
if (!layerRec) return;
Console.log ("layer name:", layerRec. name);
});
Const exists=layerTable. has ("test layer");
Console.log ("Is there a test layer:", exists);
}Hierarchy
↳
McDbLayerTable
Table of contents
Constructors
Properties
Accessors
Methods
- add
- assertObjectModification
- clone
- createExtensionDictionary
- erase
- get
- getAllRecordId
- getDatabase
- getDatabaseIndexId
- getExtensionDictionary
- getGripEditBasePointsIndex
- getGripPoints
- getHandle
- getImp
- getJson
- getObjectID
- getOwnerID
- has
- initTempObject
- isErased
- isHaveExtensionDictionary
- isKindOf
- isNull
- moveGripPointsAt
- setJson
- unErase
Constructors
constructor
• new McDbLayerTable(imp?)
Constructor.
Parameters
| Name | Type | Description |
|---|---|---|
imp? | Any | Internal implementation object |
Overrides
Properties
imp
• imp: any = 0
Internal implementation object.
Inherited from
Accessors
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
objectName
• get objectName(): string
Get the object name.
Returns
string
Return object name
Inherited from
McDbObject.objectName
Methods
add
▸ add(rec): McObjectId
Add layer records to the layer table.
Parameters
| Name | Type | Description |
|---|---|---|
| Rec | [McDbLayerTableRecord] (2d. McDbLayerTableRecord. md) | Layer table record object |
Returns
Add layer record object ID.
Example
import { MxCpp, McDbLayerTable } from "mxcad";
const layerTable:McDbLayerTable = MxCpp.getCurrentMxCAD().getDatabase().getLayerTable();
const layerRec = new McDbLayerTableRecord();
const id = layerTable.add(layerRec);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.
Parameters
| Name | Type | Default value | Description |
|---|---|---|---|
| AutoUndo | boolean | false | Should this modification automatically support undo? Default is false |
Returns
number
Inherited from
McDbObject.assertObjectModification
clone
▸ clone(): null | McDbObject
Clone objects.
Returns
null | McDbObject
The cloned object.
Inherited from
createExtensionDictionary
▸ createExtensionDictionary(): boolean
Create extended dictionary data for objects
Returns
boolean
Inherited from
McDbObject.createExtensionDictionary
erase
▸ erase(): boolean
Delete object.
Returns
boolean
Whether the deletion was successful.
Inherited from
get
▸ get(sName, skipDeleted?): McObjectId
Search for layer records in the layer table.
Parameters
| Name | Type | Default value | Description |
|---|---|---|---|
| SName | string | undefined | Layer name |
| SkipDeleted | boolean | true | Do you want to skip deleted layers |
Returns
Layer record object ID.
getAllRecordId
▸ getAllRecordId(skipDeleted?): McObjectId[]
Retrieve the IDs of all layer records in the layer table.
Parameters
| Name | Type | Default value | Description |
|---|---|---|---|
| SkipDeleted | boolean | true | Do you want to skip deleted layers |
Returns
Layer ID array
getDatabase
▸ getDatabase(): McDbDatabase
Get the database where the object is located
Returns
Return to database
Inherited from
getDatabaseIndexId
▸ getDatabaseIndexId(): number
Get the index ID of the object
Returns
number
Inherited from
getExtensionDictionary
▸ getExtensionDictionary(): McDbDictionary
Obtain the extended dictionary data of the object
Returns
Expand dictionary data
Inherited from
McDbObject.getExtensionDictionary
getGripEditBasePointsIndex
▸ getGripEditBasePointsIndex(): number[]
Retrieve the edit base point index corresponding to the grip of the object.
Returns
number[]
Inherited from
McDbObject.getGripEditBasePointsIndex
getGripPoints
▸ getGripPoints(): McGePoint3dArray
Get the grip array of the object
Returns
Inherited from
getHandle
▸ getHandle(): string
Obtain object handle
Returns
string
Return object handle
Inherited from
getImp
▸ getImp(): any
Retrieve internal implementation objects.
Returns
any
Internal implementation object.
Inherited from
getJson
▸ getJson(): string
Retrieve a string in JSON format.
Returns
string
A string in JSON format.
Inherited from
getObjectID
▸ getObjectID(): McObjectId
Get the object ID.
Returns
Object ID.
Inherited from
getOwnerID
▸ getOwnerID(): number
Obtain the ID of the object owner
Returns
number
Inherited from
has
▸ has(sName, skipDeleted?): boolean
Check if there is a layer record with the specified name in the layer table.
Parameters
| Name | Type | Default value | Description |
|---|---|---|---|
| SName | string | undefined | Layer name |
| SkipDeleted | boolean | true | Do you want to skip deleted layers |
Returns
boolean
Boolean value.
initTempObject
▸ initTempObject(imp): void
Initialize temporary objects.
Parameters
| Name | Type | Description |
|---|---|---|
| 'imp' | 'any' | Internal implementation object |
Returns
void
Inherited from
isErased
▸ isErased(): boolean
Has the object been deleted
Returns
boolean
Inherited from
isHaveExtensionDictionary
▸ isHaveExtensionDictionary(): boolean
Is there any extended dictionary data available
Returns
boolean
Inherited from
McDbObject.isHaveExtensionDictionary
isKindOf
▸ isKindOf(sObjectName): boolean
Determine object type
Parameters
| Name | Type | Description |
|---|---|---|
| SOrtName | string | Type Name |
Returns
boolean
Return whether the object is of the target type
Inherited from
isNull
▸ isNull(): any
Determine if it is an empty object
Returns
any
Inherited from
moveGripPointsAt
▸ moveGripPointsAt(iIndex, dXOffset, dYOffset, dZOffset): any
Grips for moving objects
Parameters
| Name | Type | Description |
|---|---|---|
| IIndex | Number | Index |
| DXOffset | number | X-axis offset |
| DYOffset | number | Y-axis offset |
| DZOffset | number | Z-axis offset |
Returns
any
Inherited from
setJson
▸ setJson(str): boolean
Set a string in JSON format.
Parameters
| Name | Type | Description |
|---|---|---|
| Str | string | JSON formatted string |
Returns
boolean
Is the setting successful.
Inherited from
unErase
▸ unErase(): boolean
Anti delete object.
Returns
boolean
