ACadSharp.Objects.CadDictionary - DomCR/ACadSharp GitHub Wiki
Represents a object.
Object name
Dxf class name
Namespace: ACadSharp.Objects
C#
DefaultMemberAttribute
DxfNameAttribute
DxfSubClassAttribute
public class CadDictionary
Returns | Name | Summary |
---|---|---|
DictionaryCloningFlags |
ClonningFlags | Duplicate record cloning flag (determines how to merge duplicate entries) |
UInt64[] |
EntryHandles | Soft-owner ID/handle to entry object |
String[] |
EntryNames | Entry names |
Boolean |
HardOwnerFlag | indicates that elements of the dictionary are to be treated as hard-owned. |
CadObject |
Item | |
String |
ObjectName | |
ObjectType |
ObjectType | |
String |
SubclassMarker |
Returns | Name | Summary |
---|---|---|
Void |
Add(ACadSharp.Objects.NonGraphicalObject) | Add a to the collection, this method triggers |
Void |
Add(System.String, ACadSharp.Objects.NonGraphicalObject) | Add a to the collection, this method triggers |
Void |
Clear | Removes all keys and values from the . |
Boolean |
ContainsKey(System.String) | Determines whether the contains the specified key. |
T |
GetEntry<T>(System.String) | Gets the value associated with the specific key |
IEnumerator<NonGraphicalObject> |
GetEnumerator | |
Boolean |
Remove(System.String, ACadSharp.Objects.NonGraphicalObject@) | Removes a from the collection, this method triggers |
Boolean |
TryAdd(ACadSharp.Objects.NonGraphicalObject) | Tries to add the entry using the name as key. |
Boolean |
TryGetEntry<T>(System.String, T@) | Gets the value associated with the specific key |