ACadSharp.Tables.Collections.Table_T_ - DomCR/ACadSharp GitHub Wiki

Table Class

Definition

Namespace: ACadSharp.Tables.Collections

C#

DefaultMemberAttribute
DxfSubClassAttribute
public abstractclass Table<T>

Properties

Returns Name Summary
Int32 Count Gets the number of entries in this table
T Item
String ObjectName
String SubclassMarker

Methods

Returns Name Summary
Void Add(T) Add a to the collection, this method triggers
Void AddRange(System.Collections.Generic.IEnumerable{T}) Add multiple to the collection, this method triggers
Boolean Contains(System.String) Determines whether the contains the specified key.
Void CreateDefaultEntries Create the default entries for the table if they don't exist
IEnumerator<T> GetEnumerator
T Remove(System.String) Removes a from the collection, this method triggers
Boolean TryGetValue(System.String, T@) Gets the value associated with the specified key.