ACadSharp.CadObjectCollection_T_ - DomCR/ACadSharp GitHub Wiki

CadObjectCollection Class

Collection formed by managed by an owner.

Definition

Namespace: ACadSharp

C#

DefaultMemberAttribute
public class CadObjectCollection<T>

Properties

Returns Name Summary
Int32 Count Gets the number of elements that are contained in the collection.
T Item
CadObject Owner Owner of the collection.

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 .
Void Clear Removes all elements from the Collection.
IEnumerator<T> GetEnumerator
T Remove(T) Removes a from the collection, this method triggers .