Skip to content
On this page

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

Class: McDbHatch

2d.McDbHatch

Representing pattern filling classes, achieving solid color filling and various pattern filling effects

Example

ts
import { MxCADUiPrPoint, MxCADUtility, McDbHatch, MxCpp, McDb} from "mxcad"
//Select point filling
   const getPoint = new MxCADUiPrPoint();
Console.log ("\ n Specify a point inside the filled area: ");
   let pt = (await getPoint.go()) as McGePoint3d;
   if (!pt) return;

   let hatch:McDbHatch = MxCADUtility.builderHatchFromPoint(pt);
   if (!hatch) {
Console.log ("Closed area not found \ n")
       return;
   }
//Clear the fill pattern effect
   hatch.clearPatternDefinition();
//Add Pattern Fill Definition
   hatch.addPatternDefinition(45, 1, 1, 1, 0.25, [45, 0.17677695, 0, 0, 0.25, 0.125, -0.0625])
//Set Fill Pattern
   hatch.setPattern(McDb.HatchPatternType.kCustomDefined, 'test')
//Set Fill Color
   hatch.trueColor = new McCmColor(0, 133, 122)
//Draw Fill Object
   MxCpp.getCurrentMxCAD().drawEntity(hatch);

Hierarchy

Table of contents

Constructors

Properties

Accessors

Methods

Constructors

constructor

new McDbHatch(x?)

Constructor.

Example

ts
import { McDbHatch } from "mxcad";

const hatch = new McDbHatch()

Parameters

NameType
x?object

Overrides

McDbEntity.constructor

Properties

imp

imp: any = 0

Internal implementation object.

Inherited from

McDbEntity.imp

Accessors

colorIndex

get colorIndex(): number

Obtain object color index

Example

ts
import { McDbEntity, ColorIndexType } from 'mxcad'
 const ent = new McDbEntity();
 ent.colorIndex = ColorIndexType.kByblock;
 console.log(ent.colorIndex)

Returns

number

Inherited from

McDbEntity.colorIndex

set colorIndex(val): void

Set object color index

Parameters

NameTypeDescription
ValnumberColorIndexType

Returns

void

Inherited from

McDbEntity.colorIndex


drawOrder

get drawOrder(): number

Display order of objects

Example

ts
//Assuming ent is a valid instance object
const order = ent.drawOrder();

Returns

number

Inherited from

McDbEntity.drawOrder

set drawOrder(order): void

Display order of objects

Example

ts
import { MxCpp, MxCADSelectionSet } from "mxcad";

let ss = new MxCADSelectionSet();
If (! Await ss.userSelect) return;
//Obtain the maximum and minimum display order of objects on the current graph
let minmaxOrder = MxCpp.getCurrentDatabase().currentSpace.getMinMaxDrawOrder();
//Place the object at the top.
let lOrder = minmaxOrder.maxDrawOrder + 1;
ss.forEach((id) => {
  let ent = id.getMcDbEntity();
  if (ent) {
    ent.drawOrder = lOrder;
  }
})

Parameters

NameTypeDescription
Ordernumbersequential value

Returns

void

Inherited from

McDbEntity.drawOrder


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

McDbEntity.dxf0


layer

get layer(): string

Obtain the layer name of the object

Returns

string

Inherited from

McDbEntity.layer

set layer(val): void

Set object layer name

Example

ts
import { McDbEntity } from 'mxcad'
 const ent = new McDbEntity();
 ent.layer = "newLayerName";
 console.log(ent.layer)

Parameters

NameTypeDescription
ValstringLayer Name

Returns

void

Inherited from

McDbEntity.layer


layerId

get layerId(): McObjectId

Get layer ID object

Example

ts
//Assuming ent is a valid instance object
const layerId = ent.layerId;

Returns

McObjectId

Inherited from

McDbEntity.layerId

set layerId(id): void

Set Layer Id Object

Example

ts
//Assuming ent is a valid instance object
const mxcad = MxCpp.getCurrentMxCAD();
Const layerId=mxcad. addLayer (Test Layer)
ent.layerId = layerId;

Parameters

NameType
idMcObjectId

Returns

void

Inherited from

McDbEntity.layerId


linetype

get linetype(): string

Obtain the object line type name

Returns

string

Inherited from

McDbEntity.linetype

set linetype(val): void

Set object line type name

Example

ts
import { McDbEntity } from 'mxcad'
const ent = new McDbEntity()
ent.linetype = "MyLineType";
console.log(ent.linetype)

Parameters

NameTypeDescription
ValstringLine type name

Returns

void

Inherited from

McDbEntity.linetype


linetypeId

get linetypeId(): McObjectId

Get entity object line type ID

Example

ts
//Assuming ent is a valid instance object
const linetypeId = ent.linetypeId;

Returns

McObjectId

Inherited from

McDbEntity.linetypeId

set linetypeId(id): void

Set entity object line type ID

Example

ts
//Assuming ent is a valid instance object
const mxcad = MxCpp.getCurrentMxCAD();
const lineId = mxcad.addLinetypeEx("TestMyLine", '25,-5');
ent.linetypeId = lineId;

Parameters

NameType
idMcObjectId

Returns

void

Inherited from

McDbEntity.linetypeId


linetypeScale

get linetypeScale(): number

Obtain the proportion of object line types

Returns

number

Inherited from

McDbEntity.linetypeScale

set linetypeScale(val): void

Set object line type scale

Example

ts
import { McDbEntity } from 'mxcad'
const ent = new McDbEntity()
ent.linetypeScale = 0.8;
console.log(ent.linetypeScale)

Parameters

NameTypeDescription
ValnumberLine type ratio

Returns

void

Inherited from

McDbEntity.linetypeScale


lineweight

get lineweight(): number

Obtain object line weight

Returns

number

Inherited from

McDbEntity.lineweight

set lineweight(val): void

Set object line weight

Example

ts
import { McDbEntity } from 'mxcad'
const ent = new McDbEntity()
ent.lineweight = 20;
console.log(ent.lineweight)

Parameters

NameTypeDescription
Valnumberline weight

Returns

void

Inherited from

McDbEntity.lineweight


normal

get normal(): McGeVector3d

Return the normal of the object

Example

ts

Returns

McGeVector3d

Inherited from

McDbEntity.normal

set normal(val): void

Set the normal of the object

Example

ts

Parameters

NameType
valMcGeVector3d

Returns

void

Inherited from

McDbEntity.normal


numLoops

get numLoops(): number

Number of closed areas

Example

ts
//Hatch is an instance object for pattern filling
const num = hatch.numLoops

Returns

number


numPatternDefinitions

get numPatternDefinitions(): number

The number of pattern definitions

Example

ts
//Hatch is an instance object for pattern filling
const num = hatch.numPatternDefinitions;

Returns

number


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

McDbEntity.objectName


patternAngle

get patternAngle(): number

Obtain the angle of the fill pattern

Example

ts
//Hatch is an instance object for pattern filling
const angle = hatch.patternAngle

Returns

number

set patternAngle(angle): void

Set the angle of the fill pattern

Example

ts
import { McDbHatch } from "mxcad";

const hatch = new McDbHatch();
hatch.patternAngle(Math.PI/4);

Parameters

NameType
anglenumber

Returns

void


patternDouble

get patternDouble(): boolean

Obtain whether the fill pattern is double

Example

ts
//Hatch is an instance object for pattern filling
const isDouble = hatch.patternDouble;
if(isDouble){
//Double the filling pattern
}else{
//The filling pattern is not double
}

Returns

boolean

set patternDouble(isDouble): void

Set the fill pattern to double

Example

ts
import { McDbHatch } from "mxcad";

const hatch = new McDbHatch();
hatch.patternDouble = true;

Parameters

NameType
isDoubleboolean

Returns

void


patternScale

get patternScale(): number

Get the scaling ratio of the fill pattern

Example

ts
//Hatch is an instance object for pattern filling
const scale = hatch.patternScale

Returns

number

set patternScale(scale): void

Set the scaling ratio of the fill pattern

Example

ts
import { McDbHatch } from "mxcad";

const hatch = new McDbHatch();
hatch.patternScale = 0.8;

Parameters

NameType
scalenumber

Returns

void


patternSpace

get patternSpace(): number

Obtain the space for filling patterns

Example

ts
//Hatch is an instance object for pattern filling
const patternSpace = hatch.patternSpace

Returns

number

set patternSpace(space): void

Set the space for filling patterns

Example

ts
import { McDbHatch } from "mxcad";

const hatch = new McDbHatch();
hatch.patternSpace = 0.8;

Parameters

NameType
spacenumber

Returns

void


textStyle

get textStyle(): string

Obtain the text style of the object

Returns

string

Inherited from

McDbEntity.textStyle

set textStyle(val): void

Set object text style

Example

ts
import { McDbEntity } from 'mxcad'
const ent = new McDbEntity()
ent.textStyle = "st_style";

Parameters

NameTypeDescription
ValstringText style name

Returns

void

Inherited from

McDbEntity.textStyle


textStyleId

get textStyleId(): McObjectId

Get entity text style

Example

ts
//Assuming ent is a valid instance object
const textStyleId = ent.textStyleId;

Returns

McObjectId

Inherited from

McDbEntity.textStyleId

set textStyleId(id): void

Set the text style of the entity

Example

ts
//Assuming ent is a valid instance object
const mxcad = MxCpp.getCurrentMxCAD();
const textStyleId = mxcad.addTextStyle("MyLineTypeTextStyle", "txt.shx", "hztxt.shx", 1);
ent.textStyleId = textStyleId;

Parameters

NameType
idMcObjectId

Returns

void

Inherited from

McDbEntity.textStyleId


trueColor

get trueColor(): McCmColor

Obtain the color of the object

Example

ts
import { McDbEntity, McCmColor} from 'mxcad'
 const ent = new McDbEntity();
 ent.trueColor = new McCmColor(255, 0, 0);
 console.log(ent.trueColor)

Returns

McCmColor

Inherited from

McDbEntity.trueColor

set trueColor(val): void

Set object color

Parameters

NameType
valMcCmColor

Returns

void

Inherited from

McDbEntity.trueColor


visible

get visible(): boolean

Is the object visible

Returns

boolean

Inherited from

McDbEntity.visible

set visible(val): void

Set whether it is visible

Example

ts
import { McDbEntity } from 'mxcad'
const ent = new McDbEntity()
ent.visible = true;
console.log(ent.visible)

Parameters

NameTypeDescription
ValbooleanBoolean value

Returns

void

Inherited from

McDbEntity.visible

Methods

IntersectWith

IntersectWith(intersectObject, exOption): McGePoint3dArray

Intersection with other entities to obtain the intersection point

Example

ts
import { McDbLine, McDb } from 'mxcad'
const line1 = new McDbLine(new McGePoint3d(0,0,0), new McGePoint3d(20,1,0));
const line2 = new McDbLine(new McGePoint3d(10,10,0), new McGePoint3d(11,1,0));
const ptArr = line1.IntersectWith(line2, McDb.Intersect.kExtendBoth)

Parameters

NameTypeDescription
IntersectObject[McDbEntity] (2d. McDbEntity. md)The entity object that needs to intersect is the entity object
ExOptionIntersection (../enums/2d. McDb. Intersect. md)Intersection options

Returns

McGePoint3dArray

Obtain all intersection points

Inherited from

McDbEntity.IntersectWith


addPatternDefinition

addPatternDefinition(angle, baseX, baseY, offsetX, offsetY, dashes): boolean

Add pattern definition

Example

ts
import { McDbHatch } from "mxcad"
const hatch = new McDbHatch()
const res = hatch.addPatternDefinition(45, 0, 0, 0, 0.25, [45, 0.17677695, 0, 0, 0.25, 0.125, -0.0625]);
if(res){
//Added successfully
}else{
//Add failed
}

Parameters

NameTypeDescription
Anglenumberangle such as 45
BaseXnumberBase point x coordinate
BaseYnumberbase point y coordinate
Offset Xnumberoffset x coordinate
Offset Ynumberoffset y coordinate
Dashesnumber []dash data

Returns

boolean

Did you successfully add the pattern definition


appendCircleLoop

appendCircleLoop(dCenX, dCenY, dR, dPrecision?, loopType?): any

Add a closed area for circle construction

Example

ts
import { McDbHatch } from "mxcad";
const hatch = new McDbHatch();
const res = hatch.appendCircleLoop(0,0,0,20);
if(res){
//Added successfully
}else{
//Addition failed
}

Parameters

NameTypeDefault valueDescription
DCenXnumberundefinedX-axis coordinate of the center of the circle
DCenYnumberundefinedY-axis coordinate of the center of the circle
DRnumberundefinedradius of circle
DPrecisionnumber0Precision parameter, default value is 0
loopTypenumberMcDb. HatchLoopType. kPolyline Loop type parameter, default value is McDb HatchLoopType.kPolyline

Returns

any

Additional Results


appendLoop

appendLoop(vertices, bulges?, loopType?): boolean

Add closed area

Example

ts
import { McDbHatch, McGePoint3d, McGePoint3dArray } from "mxcad";

  let solid = new McDbHatch();
  const pts = [
  new McGePoint3d({ x: 10, y: 20, z: 0 }),
  new McGePoint3d({ x: 0, y: 0, z: 0 }),
  ];
  const res = solid.appendLoop(new McGePoint3dArray(pts));
  if(res){
//Setting successful
  }else{
//Setting failed
  }

Parameters

NameTypeDefault valueDescription
Vertices[McGePoint3dArray] (2d. McGePoint3dArray. md)undefinedCoordinate set
Bulgesnumber []convexity set
loopTypenumber`McDb. HatchLoopType.kPolylineClosed Area Type

Returns

boolean

Return additional results


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

McDbEntity.assertObjectModification


clearPatternDefinition

clearPatternDefinition(): boolean

Clear pattern definition

Example

ts
//Hatch is an instance object for pattern filling
const res = hatch.clearPatternDefinition();
if(res){
//Cleared successfully
}else{
//Clearing failed
}

Returns

boolean


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

McDbEntity.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

McDbEntity.createExtensionDictionary


deleteXData

deleteXData(appName): boolean

Delete data related to entity specified application name

Example

ts
import { MxCADUiPrEntity, McDbEntity } from "mxcad";

let selEntity = new MxCADUiPrEntity();
SelEntity. setMessage ("Select Object");
let id = await selEntity.go();
if (!id.isValid()) return;
let ent:McDbEntity = id.getMcDbEntity();
if (ent === null) return;
const res = ent.deleteXData("DataName");
if(res){
//Delete successfully
}else
//Delete failed
}

Parameters

NameTypeDescription
AppNamestringExtended Data Name

Returns

boolean

Inherited from

McDbEntity.deleteXData


disableDisplay

disableDisplay(isDisable): void

Disable automatic update display of objects

Example

ts
import { McDbLine } from 'mxcad'
const line1 = new McDbLine(new McGePoint3d(0,0,0), new McGePoint3d(20,1,0));
line1.disableDisplay(true)

Parameters

NameTypeDescription
IsDisablebooleanDo you want to disable automatic object update display

Returns

void

Inherited from

McDbEntity.disableDisplay


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

McDbEntity.erase


explode

explode(): MxCADResbuf

Break the object and return the linked list of the object's data after being broken

Example

ts
import { McDbEntity, MxCADResbuf } from "mxcad";
//Obtain the target object
let getEnt = new MxCADUiPrEntity();
GetEnt.setMessage ("Select object to break: ");
let id = await getEnt.go();
let ent:McDbEntity = id.getMcDbEntity();
if (ent === null) return;
//Smash objects
      let retExplode: MxCADResbuf = ent.explode();
      if (retExplode.GetCount() == 0) return;
      let iExplodeConut = retExplode.GetCount();
      for (let j = 0; j < iExplodeConut; j++) {
          let tmpobj = retExplode.AtObject(j).val;
          if(tmpobj instanceof McDbEntity ){
              mxcad.drawEntity(tmpobj);
          }
      }

Returns

MxCADResbuf

Rebuf data

Inherited from

McDbEntity.explode


getAllAppName

getAllAppName(): McGeStringArray

Get the application name (AppName) of all XData records contained in the entity

Example

ts
//Assuming ent is a valid instance object
const appNames = ent.getAllAppName();
console.log(appNames);

Returns

McGeStringArray

Inherited from

McDbEntity.getAllAppName


getArea

getArea(): Object

Calculate Area

Example

ts
import { McGePoint3d, McDbCircle } from "mxcad"

const center = new McGePoint3d(0,0,0);
const circle = new McDbCircle(center, 20);
const area = circle.getArea();
Console.log ("Circle area: ", area)

Returns

Object

Is the val area value | ret successfully obtained

NameType
retboolean
valnumber

Inherited from

McDbEntity.getArea


getBoundingBox

getBoundingBox(): Object

Obtain the minimum outsourcing of the object

Example

ts
import { McDbText, McGePoint3d } from 'mxcad'
const text = new McDbText();
Text.textString="Test Test";
text.height = 20;
text.position = text.alignmentPoint = new McGePoint3d(0,0,0);
const { minPt, maxPt, ret } = text.getBoundingBox()

Returns

Object

NameType
maxPtMcGePoint3d
minPtMcGePoint3d
retboolean

Inherited from

McDbEntity.getBoundingBox


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

McDbEntity.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

McDbEntity.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

McDbEntity.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

McDbEntity.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

McDbEntity.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

McDbEntity.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

McDbEntity.getJson


getLoopAt

getLoopAt(loopIndex): Object

Retrieve the value of the index

Example

ts
//Hatch is an instance object for pattern filling
const numLoops = hatch.numLoops;
for (let i = 0; i < numLoops; i++) {
   const loop = hatch.getLoopAt(i);
   console.log(loop)
};

Parameters

NameTypeDescription
LoopIndexnumberindex of closed area

Returns

Object

Whether ret successfully obtained | lootype type | verticals coordinate set | bulges convexity set

NameType
bulgesnumber[]
lootypenumber
retboolean
verticesMcGePoint3d[]

getObjectID

getObjectID(): McObjectId

Get the object ID.

Example

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

Returns

McObjectId

Object ID.

Inherited from

McDbEntity.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

McDbEntity.getOwnerID


getPatternDefinitionAt

getPatternDefinitionAt(index): Object

Obtain data corresponding to the pattern definition

Example

ts
//Hatch is an instance object for pattern filling
const obj = {};
for (let i = 0; i < obj.numPatternDefinitions; i++) {
obj["patternDefinitions:" + i] = hatch.getPatternDefinitionAt(i);
};

Parameters

NameTypeDescription
Indexnumberindex

Returns

Object

Whether ret successfully obtained | angle | baseX, BaseY base point position | offsetX, OffsetY offset position | aryDashes dash data

NameType
anglenumber
aryDashesnumber[]
baseXnumber
baseYnumber
offsetXnumber
offsetYnumber
retboolean

getxData

getxData(appName?): MxCADResbuf

Obtain the extended data of the object

Example

ts
//Assuming ent is a valid instance object
const xData = ent.getXData();

Parameters

NameTypeDefault valueDescription
AppNamestring""Extended Data Name

Returns

MxCADResbuf

Inherited from

McDbEntity.getxData


getxDataDouble

getxDataDouble(appName): Object

Retrieve the double value from the specified XData type of the entity

Example

ts
//Assuming ent is a valid instance object
let data = ent.getxDataDouble("DataName");
if(data.ret){
  console.log(data.val)
}

Parameters

NameTypeDescription
AppNamestringExtended Data Name

Returns

Object

Double value

NameType
retboolean
valnumber

Inherited from

McDbEntity.getxDataDouble


getxDataLong

getxDataLong(appName): Object

Retrieve the long (integer) value from the specified XData type of the entity

Example

ts
//Assuming ent is a valid instance object
let data = ent.getxDataLong("DataName");
if(data.ret){
  console.log(data.val)
}

Parameters

NameTypeDescription
AppNamestringExtended Data Name

Returns

Object

Long value

NameType
retboolean
valnumber

Inherited from

McDbEntity.getxDataLong


getxDataPoint

getxDataPoint(appName): Object

Retrieve point objects from the specified XData type of entity

Parameters

NameTypeDescription
AppNamestringExtended Data Name

Returns

Object

Obtain results and 3D point objects

NameType
retboolean
valMcGePoint3d

Inherited from

McDbEntity.getxDataPoint


getxDataString

getxDataString(appName): Object

Retrieve XData information associated with a specific entity and return it in string form

Example

ts
//Assuming ent is a valid instance object
let data = ent.getxDataString("DataName");
if(data.ret){
  console.log(data.val)
}

Parameters

NameTypeDescription
AppNamestringExtended Data Name

Returns

Object

Val XData information | whether ret returns success

NameType
retboolean
valstring

Inherited from

McDbEntity.getxDataString


hatchStyle

hatchStyle(): HatchStyle

Fill style

Example

ts
//Hatch is an instance object for pattern filling
const style = hatch.hatchStyle();

Returns

HatchStyle


highlight

highlight(isHighlight): void

Set whether the object is highlighted

Example

ts
import { McDbEntity } from 'mxcad'
const ent = new McDbEntity()
ent.highlight(true);

Parameters

NameTypeDescription
IsHighlightbooleanIs it highlighted

Returns

void

Inherited from

McDbEntity.highlight


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

McDbEntity.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

McDbEntity.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

McDbEntity.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

McDbEntity.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

McDbEntity.isNull


isSolid

isSolid(): boolean

Check if the filled object is solid filled

Example

ts
//Hatch is an instance object for pattern filling
const res = hatch.isSolid();
if(res){
//Entity filling
}else{
//Non entity filling
}

Returns

boolean

Boolean value


loopTypeAt

loopTypeAt(loopIndex): number

Types in a closed area index

Example

ts
//Hatch is an instance object for pattern filling
const looptType = hatch.loopTypeAt(0)

Parameters

NameType
loopIndexnumber

Returns

number


mirror

mirror(point1, point2): boolean

Mirror oriented object

Example

ts
import { McDbEntity, McGePoint3d } from 'mxcad'
const ent = new McDbEntity()
ent.mirror(new McGePoint3d(0,0,0), new McGePoint3d(20,10,0))

Parameters

NameTypeDescription
Point1[McGePoint3d] (2d. McGePoint3d. md)Mirror Base Point
point2McGePoint3d-

Returns

boolean

Inherited from

McDbEntity.mirror


move

move(fromPoint, toPoint): boolean

move objects

Example

ts
import { McDbEntity, McGePoint3d } from 'mxcad'
const ent = new McDbEntity()
ent.move(new McGePoint3d(0,0,0), new McGePoint3d(20,0,0))

Parameters

NameTypeDescription
From Point[McGePoint3d] (2d. McGePoint3d. md)Move the starting point
ToPoint[McGePoint3d] (2d. McGePoint3d. md)Move End Point

Returns

boolean

Inherited from

McDbEntity.move


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

McDbEntity.moveGripPointsAt


patternName

patternName(): string

Fill pattern name

Example

ts
//Hatch is an instance object for pattern filling
const patternName = hatch.patternName()

Returns

string


patternType

patternType(): number

Fill pattern type

Example

ts
//Hatch is an instance object for pattern filling
const type = hatch.patternType()

Returns

number


removeAllLoop

removeAllLoop(): boolean

Delete all closed areas

Example

ts
//Hatch is an instance object for pattern filling
const res = hatch.removeAllLoop();
if(res){
//Delete successfully
}else{
//Delete failed
}

Returns

boolean


removeLoopAt

removeLoopAt(loopIndex): boolean

Delete a closed region under a certain index

Example

ts
//Hatch is an instance object for pattern filling
const res = hatch.removeLoopAt(1);
if(res){
//Delete successfully
}else{
//Delete failed
}

Parameters

NameTypeDescription
LoopIndexnumberIndex of removed loops

Returns

boolean


rotate

rotate(basePoint, dRotationAngle): boolean

Rotate object

Example

ts
import { McDbEntity, McGePoint3d } from 'mxcad'
const ent = new McDbEntity()
ent.rotate(new McGePoint3d(0,0,0), Math.PI)

Parameters

NameTypeDescription
BasePoint[McGePoint3d] (2d. McGePoint3d. md)Rotate the base point
DRotationAnglenumberRotation angle

Returns

boolean

Inherited from

McDbEntity.rotate


scaleEntity

scaleEntity(basePoint, dScaleFactor): boolean

Scaling objects

Example

ts
import { McDbEntity, McGePoint3d } from 'mxcad'
const ent = new McDbEntity()
ent.scaleEntity(new McGePoint3d(0,0,0), 0.5)

Parameters

NameTypeDescription
BasePoint[McGePoint3d] (2d. McGePoint3d. md)Scale Base Point
DScaleFactornumberscaling factor (<1 zoom out;>1 zoom in)

Returns

boolean

Inherited from

McDbEntity.scaleEntity


scalePattern

scalePattern(scale): boolean

Scale the currently defined fill pattern data.

Parameters

NameType
scalenumber

Returns

boolean


setHatchStyle

setHatchStyle(val): void

Set fill style

Example

ts
import { McDbHatch, McDb } from "mxcad"

McDbHatch.setHatchStyle(McDb.HatchStyle.kNormal)

Parameters

NameType
valHatchStyle

Returns

void


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

McDbEntity.setJson


setLoopAt

setLoopAt(loopIndex, vertices, bulges, loopType?): boolean

Set closed area data under a certain index

Example

ts
import { McDbHatch } from "mxcad";

const hatch = new McDbHatch();
const pts = [
new McGePoint3d({ x: 10, y: 20, z: 0 }),
new McGePoint3d({ x: 0, y: 0, z: 0 }),
];
const isSuccess = hatch.setLoopAt(0, new McGePoint3dArray(pts), [0.4,0.8]);
if (isSuccess) {
Console.log ("Loop setting successful! ");
} else {
Console.log ("Loop setting failed ");
}

Parameters

NameTypeDefault valueDescription
LoopIndexnumberundefinedClosed area index
Vertices[McGePoint3dArray] (2d. McGePoint3dArray. md)undefinedCoordinate set
Bulgesnumber []undefinedconvexity set
loopTypenumber`McDb. HatchLoopType.kPolylineClosed Area Type

Returns

boolean


setPattern

setPattern(type, patName): void

Set Fill Pattern

Example

ts
import { McDbHatch, MxCpp } from "mxcad";

  const hatch = new McDbHatch();
  hatch.setPattern(McDb.HatchPatternType.kCustomDefined, 'test')
  let mxcad = MxCpp.getCurrentMxCAD();
  mxcad.drawEntity(hatch);

Parameters

NameTypeDescription
TypeNumberSource type of fill pattern
PatNamestringFill pattern name

Returns

void


setxData

setxData(xdata): boolean

Set extended data for objects

Example

ts
import { MxCADUiPrEntity, McDbEntity } from "mxcad";

//Set extended data
let selEntity = new MxCADUiPrEntity();
SelEntity. setMessage ("Select Object");
let id = await selEntity.go();
if (!id.isValid()) return;
let ent:McDbEntity = id.getMcDbEntity();
if (ent === null) return;
ent.setxData(new MxCADResbuf([{type:DxfCode.kExDataName,val:"DataName"},{type:DxfCode.kString,val:"yyyyy"}]));

Parameters

NameTypeDescription
Xdata[MxCADResbuf] (2d. MxCADResbuf. md)Extended data linked list

Returns

boolean

Inherited from

McDbEntity.setxData


setxDataDouble

setxDataDouble(appName, val): boolean

Set the double value in the specified XData type of the entity

Example

ts
import { MxCADUiPrEntity, McDbEntity } from "mxcad";
let selEntity = new MxCADUiPrEntity();
SelEntity. setMessage ("Select Object");
let id = await selEntity.go();
if (!id.isValid()) return;
let ent:McDbEntity = id.getMcDbEntity();
if (ent === null) return;
const res = ent.setxDataDouble("DataName", 0);
if(res){
//Setting successful
}else{
//Setting failed
}

Parameters

NameTypeDescription
AppNamestringExtended Data Name
Valnumberdouble value

Returns

boolean

Boolean value

Inherited from

McDbEntity.setxDataDouble


setxDataLong

setxDataLong(appName, val): boolean

Set the long (integer) value in the specified XData type of the entity

Example

ts
import { MxCADUiPrEntity, McDbEntity } from "mxcad";

let selEntity = new MxCADUiPrEntity();
SelEntity. setMessage ("Select Object");
let id = await selEntity.go();
if (!id.isValid()) return;
let ent:McDbEntity = id.getMcDbEntity();
if (ent === null) return;
const res = ent.setxDataLong("DataName", 123456);
if(res){
//Setting successful
}else{
//Setting failed
}

Parameters

NameTypeDescription
AppNamestringExtended Data Name
Valnumberlong value

Returns

boolean

Long value

Inherited from

McDbEntity.setxDataLong


setxDataPoint

setxDataPoint(appName, val): boolean

Set the point object in the specified XData type of the entity

Parameters

NameTypeDescription
AppNamestringExtended Data Name
Val[McGePoint3d] (2d. McGePoint3d. md)Point Object

Returns

boolean

Obtain results and 3D point objects

Inherited from

McDbEntity.setxDataPoint


setxDataString

setxDataString(appName, val): boolean

Set XData information associated with a specific entity and set it in string form

Example

ts
import { MxCADUiPrEntity, McDbEntity } from "mxcad";
let selEntity = new MxCADUiPrEntity();
SelEntity. setMessage ("Select Object");
let id = await selEntity.go();
if (!id.isValid()) return;
let ent:McDbEntity = id.getMcDbEntity();
if (ent === null) return;
const res = ent.setxDataString("DataName", "xxxxx");
if(res){
//Setting successful
}else{
//Setting failed
}

Parameters

NameTypeDescription
AppNamestringExtended Data Name
Valstringstring value

Returns

boolean

Is the setting successful

Inherited from

McDbEntity.setxDataString


syncData

syncData(_toCpp?): boolean

Synchronize entity data. This method may be called after modifying the entity's attributes or attaching new data to ensure that all changes are correctly saved to the entity's database records.

Example

ts
//Assuming ent is a valid instance object
const res = ent.syncData(true);
if(res){
//Synchronization successful
}else{
//Synchronization failed
}

Parameters

NameTypeDefault valueDescription
_toCppbooleantrueWhether to synchronize data

Returns

boolean

Inherited from

McDbEntity.syncData


transformBy

transformBy(transformationMatrix): boolean

Transform object

Example

ts
import { McGeMatrix3d, McDbEntity, McGeVector3d} from 'mxcad'
 const ent = new McDbEntity()
   let matrix = new McGeMatrix3d();
matrix.setToTranslation(new McGeVector3d(20,0,0));// translation
   ent.transformBy(matrix);

Parameters

NameTypeDescription
TransformationMatrix[McGeMatrix3d] (2d. McGeMatrix3d. md)Transformation Matrix

Returns

boolean

Inherited from

McDbEntity.transformBy


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

McDbEntity.unErase


updateDisplay

updateDisplay(): void

Display the updated display of the calling object

Example

ts
//Assuming ent is a valid instance object
ent.updateDisplay()

Returns

void

Inherited from

McDbEntity.updateDisplay