Interface IIfcEntity

IIfcEntity interface

IIfcEntity is a base interface for all IFC entities

public interface IIfcEntity : IDrawingEntity

Properties

NameDescription
EntityLabel { get; }

Examples

Gets first entity from entities.

using (IfcImage ifcImage = (IfcImage)Image.Load(fileName))
{
    IIfcEntity iEntity = ifcImage._entities[0]
}

See Also