Table of Contents

Property Container

Namespace
Aspose.CAD
Assembly
Aspose.CAD.dll

Container

Gets the Image container.

public Image Container { get; }

Property Value

Image

The Image container.

Examples

Gets root (top-level) drawing where current drawing is nested in

Image drawing = ...
while (drawing.Container != null)
{
    drawing = drawing.Container;
}

Remarks

If this property is not null it indicates the image is contained whithin another image.