| Modifier and Type | Method and Description |
|---|---|
List<T> |
getEntities()
Gets all entities that exist on a drawing.
|
void |
tryRemoveEntity(T entityToRemove)
Removes entity from drawing if present
|
List<T> getEntities()
Gets all entities that exist on a drawing. Could be useful for walking through them and check its properties
Value: A set of entity instancesGets entities set from a drawing.using (IfcImage ifcImage = (IfcImage)Image.Load(fileName)) { var entities = ifcImage.Entities }
void tryRemoveEntity(T entityToRemove)
Removes entity from drawing if present
entityToRemove - Entity to removeCopyright (c) 2008-2025 Aspose Pty Ltd. All Rights Reserved.