@mlightcad/data-model 1.6.4 → 1.6.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/data-model.cjs +3 -3
- package/dist/data-model.js +4865 -4485
- package/lib/entity/AcDbAttribute.d.ts +153 -0
- package/lib/entity/AcDbAttribute.d.ts.map +1 -0
- package/lib/entity/AcDbAttribute.js +266 -0
- package/lib/entity/AcDbAttribute.js.map +1 -0
- package/lib/entity/AcDbAttributeDefinition.d.ts +203 -0
- package/lib/entity/AcDbAttributeDefinition.d.ts.map +1 -0
- package/lib/entity/AcDbAttributeDefinition.js +319 -0
- package/lib/entity/AcDbAttributeDefinition.js.map +1 -0
- package/lib/entity/AcDbBlockReference.d.ts +18 -1
- package/lib/entity/AcDbBlockReference.d.ts.map +1 -1
- package/lib/entity/AcDbBlockReference.js +54 -7
- package/lib/entity/AcDbBlockReference.js.map +1 -1
- package/lib/entity/AcDbEntity.d.ts +1 -1
- package/lib/entity/AcDbEntity.d.ts.map +1 -1
- package/lib/entity/AcDbEntity.js +3 -1
- package/lib/entity/AcDbEntity.js.map +1 -1
- package/lib/entity/AcDbEntityProperties.d.ts +9 -0
- package/lib/entity/AcDbEntityProperties.d.ts.map +1 -1
- package/lib/entity/AcDbTable.d.ts.map +1 -1
- package/lib/entity/AcDbTable.js +0 -1
- package/lib/entity/AcDbTable.js.map +1 -1
- package/lib/entity/AcDbText.d.ts +3 -3
- package/lib/entity/AcDbText.d.ts.map +1 -1
- package/lib/entity/AcDbText.js.map +1 -1
- package/lib/entity/AcDbViewport.d.ts.map +1 -1
- package/lib/entity/AcDbViewport.js +0 -1
- package/lib/entity/AcDbViewport.js.map +1 -1
- package/lib/entity/dimension/AcDbDimension.d.ts.map +1 -1
- package/lib/entity/dimension/AcDbDimension.js +1 -3
- package/lib/entity/dimension/AcDbDimension.js.map +1 -1
- package/lib/entity/index.d.ts +2 -0
- package/lib/entity/index.d.ts.map +1 -1
- package/lib/entity/index.js +2 -0
- package/lib/entity/index.js.map +1 -1
- package/lib/misc/AcDbRenderingCache.d.ts +1 -1
- package/lib/misc/AcDbRenderingCache.d.ts.map +1 -1
- package/lib/misc/AcDbRenderingCache.js +18 -10
- package/lib/misc/AcDbRenderingCache.js.map +1 -1
- package/package.json +4 -4
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
import { AcDbMText } from './AcDbMText';
|
|
2
|
+
import { AcDbText } from './AcDbText';
|
|
3
|
+
/**
|
|
4
|
+
* Represents an attribute entity attached to a block reference (INSERT).
|
|
5
|
+
*
|
|
6
|
+
* An `AcDbAttribute` stores textual data associated with a block reference
|
|
7
|
+
* and is typically created from an attribute definition (ATTDEF) when
|
|
8
|
+
* the block is inserted.
|
|
9
|
+
*
|
|
10
|
+
* This class closely follows the behavior and semantics of
|
|
11
|
+
* `AcDbAttribute` in AutoCAD ObjectARX.
|
|
12
|
+
*/
|
|
13
|
+
export declare class AcDbAttribute extends AcDbText {
|
|
14
|
+
/** The DXF entity type name. */
|
|
15
|
+
static typeName: string;
|
|
16
|
+
/**
|
|
17
|
+
* Attribute behavior flags.
|
|
18
|
+
* @see AcDbAttributeFlags
|
|
19
|
+
*/
|
|
20
|
+
private _flags;
|
|
21
|
+
/**
|
|
22
|
+
* Multi-line attribute flags.
|
|
23
|
+
* @see AcDbAttributeMTextFlag
|
|
24
|
+
*/
|
|
25
|
+
private _mtextFlag;
|
|
26
|
+
/** Attribute tag string (identifier). */
|
|
27
|
+
private _tag;
|
|
28
|
+
/**
|
|
29
|
+
* Field length value.
|
|
30
|
+
*
|
|
31
|
+
* This value is preserved for compatibility but is not actively
|
|
32
|
+
* used by AutoCAD.
|
|
33
|
+
*/
|
|
34
|
+
private _fieldLength;
|
|
35
|
+
/**
|
|
36
|
+
* Indicates whether the attribute position is locked relative
|
|
37
|
+
* to the block geometry.
|
|
38
|
+
*/
|
|
39
|
+
private _lockPositionInBlock;
|
|
40
|
+
/**
|
|
41
|
+
* Indicates whether the attribute is currently locked.
|
|
42
|
+
*/
|
|
43
|
+
private _isReallyLocked;
|
|
44
|
+
/**
|
|
45
|
+
* Internal MText representation for multi-line attributes.
|
|
46
|
+
* Undefined for single-line attributes.
|
|
47
|
+
*/
|
|
48
|
+
private _mtext?;
|
|
49
|
+
constructor();
|
|
50
|
+
/**
|
|
51
|
+
* Gets whether the attribute is invisible.
|
|
52
|
+
*/
|
|
53
|
+
get isInvisible(): boolean;
|
|
54
|
+
/**
|
|
55
|
+
* Sets whether the attribute is invisible.
|
|
56
|
+
*/
|
|
57
|
+
set isInvisible(value: boolean);
|
|
58
|
+
/**
|
|
59
|
+
* Gets whether the attribute is constant.
|
|
60
|
+
*/
|
|
61
|
+
get isConst(): boolean;
|
|
62
|
+
/**
|
|
63
|
+
* Sets whether the attribute is constant.
|
|
64
|
+
*/
|
|
65
|
+
set isConst(value: boolean);
|
|
66
|
+
/**
|
|
67
|
+
* Gets whether the attribute requires verification on input.
|
|
68
|
+
*/
|
|
69
|
+
get isVerifiable(): boolean;
|
|
70
|
+
/**
|
|
71
|
+
* Sets whether the attribute requires verification on input.
|
|
72
|
+
*/
|
|
73
|
+
set isVerifiable(value: boolean);
|
|
74
|
+
/**
|
|
75
|
+
* Gets whether the attribute has a preset value and does not prompt
|
|
76
|
+
* the user during block insertion.
|
|
77
|
+
*/
|
|
78
|
+
get isPreset(): boolean;
|
|
79
|
+
/**
|
|
80
|
+
* Sets whether the attribute has a preset value.
|
|
81
|
+
*/
|
|
82
|
+
set isPreset(value: boolean);
|
|
83
|
+
/**
|
|
84
|
+
* Gets whether this attribute is a multi-line (MText-based) attribute.
|
|
85
|
+
*/
|
|
86
|
+
get isMTextAttribute(): boolean;
|
|
87
|
+
/**
|
|
88
|
+
* Sets whether this attribute is a multi-line (MText-based) attribute.
|
|
89
|
+
*/
|
|
90
|
+
set isMTextAttribute(value: boolean);
|
|
91
|
+
/**
|
|
92
|
+
* Gets whether this attribute is a constant multi-line attribute.
|
|
93
|
+
*/
|
|
94
|
+
get isConstMTextAttribute(): boolean;
|
|
95
|
+
/**
|
|
96
|
+
* Sets whether this attribute is a constant multi-line attribute.
|
|
97
|
+
*/
|
|
98
|
+
set isConstMTextAttribute(value: boolean);
|
|
99
|
+
/**
|
|
100
|
+
* Gets the attribute tag.
|
|
101
|
+
*
|
|
102
|
+
* The tag uniquely identifies the attribute within a block.
|
|
103
|
+
*/
|
|
104
|
+
get tag(): string;
|
|
105
|
+
/**
|
|
106
|
+
* Sets the attribute tag.
|
|
107
|
+
*/
|
|
108
|
+
set tag(value: string);
|
|
109
|
+
/**
|
|
110
|
+
* Gets the attribute field length.
|
|
111
|
+
*
|
|
112
|
+
* This value is not currently used by AutoCAD.
|
|
113
|
+
*/
|
|
114
|
+
get fieldLength(): number;
|
|
115
|
+
/**
|
|
116
|
+
* Sets the attribute field length.
|
|
117
|
+
*/
|
|
118
|
+
set fieldLength(value: number);
|
|
119
|
+
/**
|
|
120
|
+
* Gets whether the attribute position is locked relative to
|
|
121
|
+
* the block geometry.
|
|
122
|
+
*/
|
|
123
|
+
get lockPositionInBlock(): boolean;
|
|
124
|
+
/**
|
|
125
|
+
* Sets whether the attribute position is locked relative to
|
|
126
|
+
* the block geometry.
|
|
127
|
+
*/
|
|
128
|
+
set lockPositionInBlock(value: boolean);
|
|
129
|
+
/**
|
|
130
|
+
* Gets whether the attribute is currently locked.
|
|
131
|
+
*/
|
|
132
|
+
get isReallyLocked(): boolean;
|
|
133
|
+
/**
|
|
134
|
+
* Sets whether the attribute is currently locked.
|
|
135
|
+
*/
|
|
136
|
+
set isReallyLocked(value: boolean);
|
|
137
|
+
/**
|
|
138
|
+
* Gets the internal `AcDbMText` used to represent this attribute
|
|
139
|
+
* when it is a multi-line attribute.
|
|
140
|
+
*
|
|
141
|
+
* Returns `undefined` for single-line attributes.
|
|
142
|
+
*/
|
|
143
|
+
get mtext(): AcDbMText | undefined;
|
|
144
|
+
/**
|
|
145
|
+
* Sets the internal `AcDbMText` used to represent this attribute
|
|
146
|
+
* as a multi-line attribute.
|
|
147
|
+
*
|
|
148
|
+
* Setting this value automatically marks the attribute as
|
|
149
|
+
* a multi-line attribute.
|
|
150
|
+
*/
|
|
151
|
+
set mtext(value: AcDbMText | undefined);
|
|
152
|
+
}
|
|
153
|
+
//# sourceMappingURL=AcDbAttribute.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AcDbAttribute.d.ts","sourceRoot":"","sources":["../../src/entity/AcDbAttribute.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAA;AACvC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAA;AAErC;;;;;;;;;GASG;AACH,qBAAa,aAAc,SAAQ,QAAQ;IACzC,gCAAgC;IAChC,OAAgB,QAAQ,EAAE,MAAM,CAAW;IAE3C;;;OAGG;IACH,OAAO,CAAC,MAAM,CAAQ;IAEtB;;;OAGG;IACH,OAAO,CAAC,UAAU,CAAQ;IAE1B,yCAAyC;IACzC,OAAO,CAAC,IAAI,CAAQ;IAEpB;;;;;OAKG;IACH,OAAO,CAAC,YAAY,CAAQ;IAE5B;;;OAGG;IACH,OAAO,CAAC,oBAAoB,CAAS;IAErC;;OAEG;IACH,OAAO,CAAC,eAAe,CAAS;IAEhC;;;OAGG;IACH,OAAO,CAAC,MAAM,CAAC,CAAW;;IAY1B;;OAEG;IACH,IAAI,WAAW,IAAI,OAAO,CAEzB;IAED;;OAEG;IACH,IAAI,WAAW,CAAC,KAAK,EAAE,OAAO,EAM7B;IAED;;OAEG;IACH,IAAI,OAAO,IAAI,OAAO,CAErB;IAED;;OAEG;IACH,IAAI,OAAO,CAAC,KAAK,EAAE,OAAO,EAMzB;IAED;;OAEG;IACH,IAAI,YAAY,IAAI,OAAO,CAE1B;IAED;;OAEG;IACH,IAAI,YAAY,CAAC,KAAK,EAAE,OAAO,EAM9B;IAED;;;OAGG;IACH,IAAI,QAAQ,IAAI,OAAO,CAEtB;IAED;;OAEG;IACH,IAAI,QAAQ,CAAC,KAAK,EAAE,OAAO,EAM1B;IAED;;OAEG;IACH,IAAI,gBAAgB,IAAI,OAAO,CAE9B;IAED;;OAEG;IACH,IAAI,gBAAgB,CAAC,KAAK,EAAE,OAAO,EAMlC;IAED;;OAEG;IACH,IAAI,qBAAqB,IAAI,OAAO,CAEnC;IAED;;OAEG;IACH,IAAI,qBAAqB,CAAC,KAAK,EAAE,OAAO,EAMvC;IAED;;;;OAIG;IACH,IAAI,GAAG,IAAI,MAAM,CAEhB;IAED;;OAEG;IACH,IAAI,GAAG,CAAC,KAAK,EAAE,MAAM,EAEpB;IAED;;;;OAIG;IACH,IAAI,WAAW,IAAI,MAAM,CAExB;IAED;;OAEG;IACH,IAAI,WAAW,CAAC,KAAK,EAAE,MAAM,EAE5B;IAED;;;OAGG;IACH,IAAI,mBAAmB,IAAI,OAAO,CAEjC;IAED;;;OAGG;IACH,IAAI,mBAAmB,CAAC,KAAK,EAAE,OAAO,EAErC;IAED;;OAEG;IACH,IAAI,cAAc,IAAI,OAAO,CAE5B;IAED;;OAEG;IACH,IAAI,cAAc,CAAC,KAAK,EAAE,OAAO,EAEhC;IAED;;;;;OAKG;IACH,IAAI,KAAK,IAAI,SAAS,GAAG,SAAS,CAEjC;IAED;;;;;;OAMG;IACH,IAAI,KAAK,CAAC,KAAK,EAAE,SAAS,GAAG,SAAS,EAGrC;CACF"}
|
|
@@ -0,0 +1,266 @@
|
|
|
1
|
+
var __extends = (this && this.__extends) || (function () {
|
|
2
|
+
var extendStatics = function (d, b) {
|
|
3
|
+
extendStatics = Object.setPrototypeOf ||
|
|
4
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
5
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
6
|
+
return extendStatics(d, b);
|
|
7
|
+
};
|
|
8
|
+
return function (d, b) {
|
|
9
|
+
if (typeof b !== "function" && b !== null)
|
|
10
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
11
|
+
extendStatics(d, b);
|
|
12
|
+
function __() { this.constructor = d; }
|
|
13
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
14
|
+
};
|
|
15
|
+
})();
|
|
16
|
+
import { AcDbAttributeFlags, AcDbAttributeMTextFlag } from './AcDbAttributeDefinition';
|
|
17
|
+
import { AcDbText } from './AcDbText';
|
|
18
|
+
/**
|
|
19
|
+
* Represents an attribute entity attached to a block reference (INSERT).
|
|
20
|
+
*
|
|
21
|
+
* An `AcDbAttribute` stores textual data associated with a block reference
|
|
22
|
+
* and is typically created from an attribute definition (ATTDEF) when
|
|
23
|
+
* the block is inserted.
|
|
24
|
+
*
|
|
25
|
+
* This class closely follows the behavior and semantics of
|
|
26
|
+
* `AcDbAttribute` in AutoCAD ObjectARX.
|
|
27
|
+
*/
|
|
28
|
+
var AcDbAttribute = /** @class */ (function (_super) {
|
|
29
|
+
__extends(AcDbAttribute, _super);
|
|
30
|
+
function AcDbAttribute() {
|
|
31
|
+
var _this = _super.call(this) || this;
|
|
32
|
+
_this._flags = 0;
|
|
33
|
+
_this._mtextFlag = 0;
|
|
34
|
+
_this._tag = '';
|
|
35
|
+
_this._fieldLength = 0;
|
|
36
|
+
_this._lockPositionInBlock = false;
|
|
37
|
+
_this._isReallyLocked = false;
|
|
38
|
+
return _this;
|
|
39
|
+
}
|
|
40
|
+
Object.defineProperty(AcDbAttribute.prototype, "isInvisible", {
|
|
41
|
+
/**
|
|
42
|
+
* Gets whether the attribute is invisible.
|
|
43
|
+
*/
|
|
44
|
+
get: function () {
|
|
45
|
+
return (this._flags & AcDbAttributeFlags.Invisible) !== 0;
|
|
46
|
+
},
|
|
47
|
+
/**
|
|
48
|
+
* Sets whether the attribute is invisible.
|
|
49
|
+
*/
|
|
50
|
+
set: function (value) {
|
|
51
|
+
if (value) {
|
|
52
|
+
this._flags |= AcDbAttributeFlags.Invisible;
|
|
53
|
+
}
|
|
54
|
+
else {
|
|
55
|
+
this._flags &= ~AcDbAttributeFlags.Invisible;
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
enumerable: false,
|
|
59
|
+
configurable: true
|
|
60
|
+
});
|
|
61
|
+
Object.defineProperty(AcDbAttribute.prototype, "isConst", {
|
|
62
|
+
/**
|
|
63
|
+
* Gets whether the attribute is constant.
|
|
64
|
+
*/
|
|
65
|
+
get: function () {
|
|
66
|
+
return (this._flags & AcDbAttributeFlags.Const) !== 0;
|
|
67
|
+
},
|
|
68
|
+
/**
|
|
69
|
+
* Sets whether the attribute is constant.
|
|
70
|
+
*/
|
|
71
|
+
set: function (value) {
|
|
72
|
+
if (value) {
|
|
73
|
+
this._flags |= AcDbAttributeFlags.Const;
|
|
74
|
+
}
|
|
75
|
+
else {
|
|
76
|
+
this._flags &= ~AcDbAttributeFlags.Const;
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
enumerable: false,
|
|
80
|
+
configurable: true
|
|
81
|
+
});
|
|
82
|
+
Object.defineProperty(AcDbAttribute.prototype, "isVerifiable", {
|
|
83
|
+
/**
|
|
84
|
+
* Gets whether the attribute requires verification on input.
|
|
85
|
+
*/
|
|
86
|
+
get: function () {
|
|
87
|
+
return (this._flags & AcDbAttributeFlags.Verifiable) !== 0;
|
|
88
|
+
},
|
|
89
|
+
/**
|
|
90
|
+
* Sets whether the attribute requires verification on input.
|
|
91
|
+
*/
|
|
92
|
+
set: function (value) {
|
|
93
|
+
if (value) {
|
|
94
|
+
this._flags |= AcDbAttributeFlags.Verifiable;
|
|
95
|
+
}
|
|
96
|
+
else {
|
|
97
|
+
this._flags &= ~AcDbAttributeFlags.Verifiable;
|
|
98
|
+
}
|
|
99
|
+
},
|
|
100
|
+
enumerable: false,
|
|
101
|
+
configurable: true
|
|
102
|
+
});
|
|
103
|
+
Object.defineProperty(AcDbAttribute.prototype, "isPreset", {
|
|
104
|
+
/**
|
|
105
|
+
* Gets whether the attribute has a preset value and does not prompt
|
|
106
|
+
* the user during block insertion.
|
|
107
|
+
*/
|
|
108
|
+
get: function () {
|
|
109
|
+
return (this._flags & AcDbAttributeFlags.Preset) !== 0;
|
|
110
|
+
},
|
|
111
|
+
/**
|
|
112
|
+
* Sets whether the attribute has a preset value.
|
|
113
|
+
*/
|
|
114
|
+
set: function (value) {
|
|
115
|
+
if (value) {
|
|
116
|
+
this._flags |= AcDbAttributeFlags.Preset;
|
|
117
|
+
}
|
|
118
|
+
else {
|
|
119
|
+
this._flags &= ~AcDbAttributeFlags.Preset;
|
|
120
|
+
}
|
|
121
|
+
},
|
|
122
|
+
enumerable: false,
|
|
123
|
+
configurable: true
|
|
124
|
+
});
|
|
125
|
+
Object.defineProperty(AcDbAttribute.prototype, "isMTextAttribute", {
|
|
126
|
+
/**
|
|
127
|
+
* Gets whether this attribute is a multi-line (MText-based) attribute.
|
|
128
|
+
*/
|
|
129
|
+
get: function () {
|
|
130
|
+
return (this._mtextFlag & AcDbAttributeMTextFlag.MultiLine) !== 0;
|
|
131
|
+
},
|
|
132
|
+
/**
|
|
133
|
+
* Sets whether this attribute is a multi-line (MText-based) attribute.
|
|
134
|
+
*/
|
|
135
|
+
set: function (value) {
|
|
136
|
+
if (value) {
|
|
137
|
+
this._mtextFlag |= AcDbAttributeMTextFlag.MultiLine;
|
|
138
|
+
}
|
|
139
|
+
else {
|
|
140
|
+
this._mtextFlag &= ~AcDbAttributeMTextFlag.MultiLine;
|
|
141
|
+
}
|
|
142
|
+
},
|
|
143
|
+
enumerable: false,
|
|
144
|
+
configurable: true
|
|
145
|
+
});
|
|
146
|
+
Object.defineProperty(AcDbAttribute.prototype, "isConstMTextAttribute", {
|
|
147
|
+
/**
|
|
148
|
+
* Gets whether this attribute is a constant multi-line attribute.
|
|
149
|
+
*/
|
|
150
|
+
get: function () {
|
|
151
|
+
return (this._mtextFlag & AcDbAttributeMTextFlag.ConstMultiLine) !== 0;
|
|
152
|
+
},
|
|
153
|
+
/**
|
|
154
|
+
* Sets whether this attribute is a constant multi-line attribute.
|
|
155
|
+
*/
|
|
156
|
+
set: function (value) {
|
|
157
|
+
if (value) {
|
|
158
|
+
this._mtextFlag |= AcDbAttributeMTextFlag.ConstMultiLine;
|
|
159
|
+
}
|
|
160
|
+
else {
|
|
161
|
+
this._mtextFlag &= ~AcDbAttributeMTextFlag.ConstMultiLine;
|
|
162
|
+
}
|
|
163
|
+
},
|
|
164
|
+
enumerable: false,
|
|
165
|
+
configurable: true
|
|
166
|
+
});
|
|
167
|
+
Object.defineProperty(AcDbAttribute.prototype, "tag", {
|
|
168
|
+
/**
|
|
169
|
+
* Gets the attribute tag.
|
|
170
|
+
*
|
|
171
|
+
* The tag uniquely identifies the attribute within a block.
|
|
172
|
+
*/
|
|
173
|
+
get: function () {
|
|
174
|
+
return this._tag;
|
|
175
|
+
},
|
|
176
|
+
/**
|
|
177
|
+
* Sets the attribute tag.
|
|
178
|
+
*/
|
|
179
|
+
set: function (value) {
|
|
180
|
+
this._tag = value;
|
|
181
|
+
},
|
|
182
|
+
enumerable: false,
|
|
183
|
+
configurable: true
|
|
184
|
+
});
|
|
185
|
+
Object.defineProperty(AcDbAttribute.prototype, "fieldLength", {
|
|
186
|
+
/**
|
|
187
|
+
* Gets the attribute field length.
|
|
188
|
+
*
|
|
189
|
+
* This value is not currently used by AutoCAD.
|
|
190
|
+
*/
|
|
191
|
+
get: function () {
|
|
192
|
+
return this._fieldLength;
|
|
193
|
+
},
|
|
194
|
+
/**
|
|
195
|
+
* Sets the attribute field length.
|
|
196
|
+
*/
|
|
197
|
+
set: function (value) {
|
|
198
|
+
this._fieldLength = value;
|
|
199
|
+
},
|
|
200
|
+
enumerable: false,
|
|
201
|
+
configurable: true
|
|
202
|
+
});
|
|
203
|
+
Object.defineProperty(AcDbAttribute.prototype, "lockPositionInBlock", {
|
|
204
|
+
/**
|
|
205
|
+
* Gets whether the attribute position is locked relative to
|
|
206
|
+
* the block geometry.
|
|
207
|
+
*/
|
|
208
|
+
get: function () {
|
|
209
|
+
return this._lockPositionInBlock;
|
|
210
|
+
},
|
|
211
|
+
/**
|
|
212
|
+
* Sets whether the attribute position is locked relative to
|
|
213
|
+
* the block geometry.
|
|
214
|
+
*/
|
|
215
|
+
set: function (value) {
|
|
216
|
+
this._lockPositionInBlock = value;
|
|
217
|
+
},
|
|
218
|
+
enumerable: false,
|
|
219
|
+
configurable: true
|
|
220
|
+
});
|
|
221
|
+
Object.defineProperty(AcDbAttribute.prototype, "isReallyLocked", {
|
|
222
|
+
/**
|
|
223
|
+
* Gets whether the attribute is currently locked.
|
|
224
|
+
*/
|
|
225
|
+
get: function () {
|
|
226
|
+
return this._isReallyLocked;
|
|
227
|
+
},
|
|
228
|
+
/**
|
|
229
|
+
* Sets whether the attribute is currently locked.
|
|
230
|
+
*/
|
|
231
|
+
set: function (value) {
|
|
232
|
+
this._isReallyLocked = value;
|
|
233
|
+
},
|
|
234
|
+
enumerable: false,
|
|
235
|
+
configurable: true
|
|
236
|
+
});
|
|
237
|
+
Object.defineProperty(AcDbAttribute.prototype, "mtext", {
|
|
238
|
+
/**
|
|
239
|
+
* Gets the internal `AcDbMText` used to represent this attribute
|
|
240
|
+
* when it is a multi-line attribute.
|
|
241
|
+
*
|
|
242
|
+
* Returns `undefined` for single-line attributes.
|
|
243
|
+
*/
|
|
244
|
+
get: function () {
|
|
245
|
+
return this._mtext;
|
|
246
|
+
},
|
|
247
|
+
/**
|
|
248
|
+
* Sets the internal `AcDbMText` used to represent this attribute
|
|
249
|
+
* as a multi-line attribute.
|
|
250
|
+
*
|
|
251
|
+
* Setting this value automatically marks the attribute as
|
|
252
|
+
* a multi-line attribute.
|
|
253
|
+
*/
|
|
254
|
+
set: function (value) {
|
|
255
|
+
this._mtext = value;
|
|
256
|
+
this.isMTextAttribute = value != null;
|
|
257
|
+
},
|
|
258
|
+
enumerable: false,
|
|
259
|
+
configurable: true
|
|
260
|
+
});
|
|
261
|
+
/** The DXF entity type name. */
|
|
262
|
+
AcDbAttribute.typeName = 'Attrib';
|
|
263
|
+
return AcDbAttribute;
|
|
264
|
+
}(AcDbText));
|
|
265
|
+
export { AcDbAttribute };
|
|
266
|
+
//# sourceMappingURL=AcDbAttribute.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AcDbAttribute.js","sourceRoot":"","sources":["../../src/entity/AcDbAttribute.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,203 @@
|
|
|
1
|
+
import { AcGiRenderer } from '@mlightcad/graphic-interface';
|
|
2
|
+
import { AcDbMText } from './AcDbMText';
|
|
3
|
+
import { AcDbText } from './AcDbText';
|
|
4
|
+
/**
|
|
5
|
+
* Attribute definition flags.
|
|
6
|
+
*
|
|
7
|
+
* These flags control visibility, editability, prompting behavior,
|
|
8
|
+
* and verification requirements of an attribute.
|
|
9
|
+
*/
|
|
10
|
+
export declare enum AcDbAttributeFlags {
|
|
11
|
+
/** Attribute is invisible (not displayed). */
|
|
12
|
+
Invisible = 1,
|
|
13
|
+
/** Attribute is constant and cannot be modified per block reference. */
|
|
14
|
+
Const = 2,
|
|
15
|
+
/** Attribute requires verification on user input. */
|
|
16
|
+
Verifiable = 4,
|
|
17
|
+
/** Attribute has a preset value and does not prompt during insertion. */
|
|
18
|
+
Preset = 8
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* Flags related to multi-line (MText-based) attributes.
|
|
22
|
+
*/
|
|
23
|
+
export declare enum AcDbAttributeMTextFlag {
|
|
24
|
+
/** Attribute is represented as multi-line text (MText). */
|
|
25
|
+
MultiLine = 2,
|
|
26
|
+
/** Multi-line attribute is constant. */
|
|
27
|
+
ConstMultiLine = 4
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* Represents an attribute definition attached to a block definition.
|
|
31
|
+
*
|
|
32
|
+
* This class closely follows the behavior and semantics of
|
|
33
|
+
* `AcDbAttributeDefinition` in AutoCAD ObjectARX.
|
|
34
|
+
*/
|
|
35
|
+
export declare class AcDbAttributeDefinition extends AcDbText {
|
|
36
|
+
/** The DXF entity type name. */
|
|
37
|
+
static typeName: string;
|
|
38
|
+
/**
|
|
39
|
+
* Attribute behavior flags.
|
|
40
|
+
* @see AcDbAttributeFlags
|
|
41
|
+
*/
|
|
42
|
+
private _flags;
|
|
43
|
+
/**
|
|
44
|
+
* Multi-line attribute flags.
|
|
45
|
+
* @see AcDbAttributeMTextFlag
|
|
46
|
+
*/
|
|
47
|
+
private _mtextFlag;
|
|
48
|
+
/** Attribute tag string (identifier). */
|
|
49
|
+
private _tag;
|
|
50
|
+
/**
|
|
51
|
+
* Prompt string displayed during block insertion.
|
|
52
|
+
*
|
|
53
|
+
* This value is inherited from the corresponding
|
|
54
|
+
* `AcDbAttributeDefinition` and is used to prompt the user
|
|
55
|
+
* for input when the block is inserted.
|
|
56
|
+
*/
|
|
57
|
+
private _prompt;
|
|
58
|
+
/**
|
|
59
|
+
* Field length value.
|
|
60
|
+
*
|
|
61
|
+
* This value is preserved for compatibility but is not actively
|
|
62
|
+
* used by AutoCAD.
|
|
63
|
+
*/
|
|
64
|
+
private _fieldLength;
|
|
65
|
+
/**
|
|
66
|
+
* Indicates whether the attribute position is locked relative
|
|
67
|
+
* to the block geometry.
|
|
68
|
+
*/
|
|
69
|
+
private _lockPositionInBlock;
|
|
70
|
+
/**
|
|
71
|
+
* Indicates whether the attribute is currently locked.
|
|
72
|
+
*/
|
|
73
|
+
private _isReallyLocked;
|
|
74
|
+
/**
|
|
75
|
+
* Internal MText representation for multi-line attributes.
|
|
76
|
+
* Undefined for single-line attributes.
|
|
77
|
+
*/
|
|
78
|
+
private _mtext?;
|
|
79
|
+
constructor();
|
|
80
|
+
/**
|
|
81
|
+
* Gets whether the attribute is invisible.
|
|
82
|
+
*/
|
|
83
|
+
get isInvisible(): boolean;
|
|
84
|
+
/**
|
|
85
|
+
* Sets whether the attribute is invisible.
|
|
86
|
+
*/
|
|
87
|
+
set isInvisible(value: boolean);
|
|
88
|
+
/**
|
|
89
|
+
* Gets the prompt string displayed during block insertion.
|
|
90
|
+
*
|
|
91
|
+
* This prompt is shown to the user when the attribute is created
|
|
92
|
+
* from an attribute definition, unless the attribute is preset.
|
|
93
|
+
*/
|
|
94
|
+
get prompt(): string;
|
|
95
|
+
/**
|
|
96
|
+
* Sets the prompt string displayed during block insertion.
|
|
97
|
+
*
|
|
98
|
+
* DXF group code: 3
|
|
99
|
+
*/
|
|
100
|
+
set prompt(value: string);
|
|
101
|
+
/**
|
|
102
|
+
* Gets whether the attribute is constant.
|
|
103
|
+
*/
|
|
104
|
+
get isConst(): boolean;
|
|
105
|
+
/**
|
|
106
|
+
* Sets whether the attribute is constant.
|
|
107
|
+
*/
|
|
108
|
+
set isConst(value: boolean);
|
|
109
|
+
/**
|
|
110
|
+
* Gets whether the attribute requires verification on input.
|
|
111
|
+
*/
|
|
112
|
+
get isVerifiable(): boolean;
|
|
113
|
+
/**
|
|
114
|
+
* Sets whether the attribute requires verification on input.
|
|
115
|
+
*/
|
|
116
|
+
set isVerifiable(value: boolean);
|
|
117
|
+
/**
|
|
118
|
+
* Gets whether the attribute has a preset value and does not prompt
|
|
119
|
+
* the user during block insertion.
|
|
120
|
+
*/
|
|
121
|
+
get isPreset(): boolean;
|
|
122
|
+
/**
|
|
123
|
+
* Sets whether the attribute has a preset value.
|
|
124
|
+
*/
|
|
125
|
+
set isPreset(value: boolean);
|
|
126
|
+
/**
|
|
127
|
+
* Gets whether this attribute is a multi-line (MText-based) attribute.
|
|
128
|
+
*/
|
|
129
|
+
get isMTextAttribute(): boolean;
|
|
130
|
+
/**
|
|
131
|
+
* Sets whether this attribute is a multi-line (MText-based) attribute.
|
|
132
|
+
*/
|
|
133
|
+
set isMTextAttribute(value: boolean);
|
|
134
|
+
/**
|
|
135
|
+
* Gets whether this attribute is a constant multi-line attribute.
|
|
136
|
+
*/
|
|
137
|
+
get isConstMTextAttribute(): boolean;
|
|
138
|
+
/**
|
|
139
|
+
* Sets whether this attribute is a constant multi-line attribute.
|
|
140
|
+
*/
|
|
141
|
+
set isConstMTextAttribute(value: boolean);
|
|
142
|
+
/**
|
|
143
|
+
* Gets the attribute tag.
|
|
144
|
+
*
|
|
145
|
+
* The tag uniquely identifies the attribute within a block.
|
|
146
|
+
*/
|
|
147
|
+
get tag(): string;
|
|
148
|
+
/**
|
|
149
|
+
* Sets the attribute tag.
|
|
150
|
+
*/
|
|
151
|
+
set tag(value: string);
|
|
152
|
+
/**
|
|
153
|
+
* Gets the attribute field length.
|
|
154
|
+
*
|
|
155
|
+
* This value is not currently used by AutoCAD.
|
|
156
|
+
*/
|
|
157
|
+
get fieldLength(): number;
|
|
158
|
+
/**
|
|
159
|
+
* Sets the attribute field length.
|
|
160
|
+
*/
|
|
161
|
+
set fieldLength(value: number);
|
|
162
|
+
/**
|
|
163
|
+
* Gets whether the attribute position is locked relative to
|
|
164
|
+
* the block geometry.
|
|
165
|
+
*/
|
|
166
|
+
get lockPositionInBlock(): boolean;
|
|
167
|
+
/**
|
|
168
|
+
* Sets whether the attribute position is locked relative to
|
|
169
|
+
* the block geometry.
|
|
170
|
+
*/
|
|
171
|
+
set lockPositionInBlock(value: boolean);
|
|
172
|
+
/**
|
|
173
|
+
* Gets whether the attribute is currently locked.
|
|
174
|
+
*/
|
|
175
|
+
get isReallyLocked(): boolean;
|
|
176
|
+
/**
|
|
177
|
+
* Sets whether the attribute is currently locked.
|
|
178
|
+
*/
|
|
179
|
+
set isReallyLocked(value: boolean);
|
|
180
|
+
/**
|
|
181
|
+
* Gets the internal `AcDbMText` used to represent this attribute
|
|
182
|
+
* when it is a multi-line attribute.
|
|
183
|
+
*
|
|
184
|
+
* Returns `undefined` for single-line attributes.
|
|
185
|
+
*/
|
|
186
|
+
get mtext(): AcDbMText | undefined;
|
|
187
|
+
/**
|
|
188
|
+
* Sets the internal `AcDbMText` used to represent this attribute
|
|
189
|
+
* as a multi-line attribute.
|
|
190
|
+
*
|
|
191
|
+
* Setting this value automatically marks the attribute as
|
|
192
|
+
* a multi-line attribute.
|
|
193
|
+
*/
|
|
194
|
+
set mtext(value: AcDbMText | undefined);
|
|
195
|
+
/**
|
|
196
|
+
* Draws nothing for attribute definition.
|
|
197
|
+
*
|
|
198
|
+
* @param renderer - The renderer to use for drawing
|
|
199
|
+
* @returns Always return undefined because of drawing nothing for attribute definition.
|
|
200
|
+
*/
|
|
201
|
+
subWorldDraw(_renderer: AcGiRenderer): undefined;
|
|
202
|
+
}
|
|
203
|
+
//# sourceMappingURL=AcDbAttributeDefinition.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AcDbAttributeDefinition.d.ts","sourceRoot":"","sources":["../../src/entity/AcDbAttributeDefinition.ts"],"names":[],"mappings":"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"}
|