This repository was archived by the owner on Oct 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 439
76aa1364 4b55 ecd4 f798 fcefdd2061fb
haplokuon edited this page May 6, 2023
·
1 revision
netDxf 3.0.0 Library
| Add | Adds an entity to the collection. |
| AddRange | Adds an entity list to the end of the collection. |
| Clear | Removes all entities from the collection. |
| Contains | Determines whether an entity is in the collection. |
| CopyTo | Copies the entire collection to a compatible one-dimensional array, starting at the specified index of the target array. |
| Equals | Determines whether the specified object is equal to the current object. (Inherited from Object) |
| GetEnumerator | Returns an enumerator that iterates through the collection. |
| GetHashCode | Serves as the default hash function. (Inherited from Object) |
| GetType | Gets the Type of the current instance. (Inherited from Object) |
| IndexOf | Searches for the specified entity and returns the zero-based index of the first occurrence within the entire collection. |
| Insert | Inserts an entity into the collection at the specified index. |
| Remove(EntityObject) | Removes the first occurrence of a specific entity from the collection |
| Remove(IEnumerable(EntityObject)) | Removes the first occurrence of a specific object from the collection |
| RemoveAt | Removes the entity at the specified index of the collection. |
| ToString | Returns a string that represents the current object. (Inherited from Object) |