IfcImage.IsCached

IfcImage.IsCached property

Gets a value indicating whether object’s data is cached currently and no data reading is required. At present time always returns true

public override bool IsCached { get; }

Property Value

true if object’s data is cached; otherwise, false.

Examples

Gets the isCached from the image.

using (IfcImage ifcImage = (IfcImage)Image.Load(fileName))
{
    var isCached = ifcImage.IsCached
}

See Also