IfcImage.Depth

IfcImage.Depth property

Gets the depth. It is calculated from all the entities

public override int Depth { get; }

Property Value

The depth.

Examples

Gets the depth of the image.

using (IfcImage ifcImage = (IfcImage)Image.Load(fileName))
{
    var depth = ifcImage.Depth
}

See Also