Interface IHasEntitiesT

IHasEntities<T> interface

Represents generic interface for a drawing consisted of entities.

public interface IHasEntities<T>
    where T : IDrawingEntity

Properties

NameDescription
Entities { get; }Gets all entities that exist on a drawing. Could be useful for walking through them and check its properties

Methods

NameDescription
TryRemoveEntity(T)Removes entity from drawing if present

See Also