Interface ICollector<T>
Represents a collector of T instances
Namespace: TSD.API.Remoting.Common
Assembly: TSD.API.Remoting.dll
Syntax
public interface ICollector<in T>
Type Parameters
| Name | Description |
|---|---|
| T | The type of collected items |
Methods
| Name | Description |
|---|---|
| Add(T?) | Adds the given item to the collector |
| AddRange(IEnumerable<T?>?) | Adds the given items to the collector |
| ApplyItemsAsync() | Applies modified items back to the Tekla Structural Designer model |
| Remove(T?) | Removes the given item from the collector |
| RemoveRange(IEnumerable<T?>?) | Removes the given items from the collector |