IfcImage.Entities

IfcImage.Entities property

Gets all entities that exists on a drawing. Could be useful for walking through them and check its properties

public IEnumerable<IIfcEntity> Entities { get; }

Property Value

A set of entity instances

Examples

Gets entities set from a drawing.

using (IfcImage ifcImage = (IfcImage)Image.Load(fileName))
{
    var entities = ifcImage.Entities
}

See Also