Class CdrBbox

Class CdrBbox

Namespace: Aspose.Imaging.FileFormats.Cdr.Objects
Assembly: Aspose.Imaging.dll (25.7.0)

The cdr box

[JsonObject(MemberSerialization.OptIn)]
   public class CdrBbox : CdrObjectContainer, IDisposable
   {
      public void Dispose()
      {
      }
   }

Inheritance

object DisposableObject CdrObject CdrObjectContainer CdrBbox

Implements

IDisposable

Inherited Members

CdrObjectContainer.AddChildObject(CdrObject) , CdrObjectContainer.InsertObject(CdrObject) , CdrObjectContainer.ReleaseManagedResources() , CdrObjectContainer.Childs , CdrObjectContainer.LoadToLastChild , CdrObjectContainer.LastChild , CdrObjectContainer.Hidden , CdrObject.Parent , CdrObject.Document , DisposableObject.Dispose() , DisposableObject.ReleaseManagedResources() , DisposableObject.ReleaseUnmanagedResources() , DisposableObject.VerifyNotDisposed() , DisposableObject.Disposed , object.GetType() , object.MemberwiseClone() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()

Constructors

CdrBbox()

public CdrBbox()
   {
      this.Left = 0;
      this.Right = 0;
      this.Top = 0;
      this.Bottom = 0;
   }

Properties

Height

Gets the height.

public double Height
   {
      get;
   }

Property Value

double

Width

Gets the width.

public double Width
   {
      get;
   }

Property Value

double

X

Gets the x.

public double X
   {
      get;
   }

Property Value

double

X0

Gets or sets the x0.

[JsonProperty]
    public double X0
    {
        get;
        set;
    }

Property Value

double

X1

Gets or sets the x1.

[JsonProperty]
    public double X1
    {
        get;
        set;
    }

Property Value

double

Y

Gets the y.

public double Y
   {
      get;
   }

Property Value

double

Y0

Gets or sets the y0.

[JsonProperty]
    public double Y0
    {
        get;
        set;
    }

Property Value

double

Y1

Gets or sets the y1.

public class YourClassName
{
    [JsonProperty]
    public double Y1 { get; set; }
}

Property Value

double

See Also

CdrObjectContainer

 English