Interface IObjectWithSizeF

Interface IObjectWithSizeF

Namespace: Aspose.Imaging.Interfaces
Assembly: Aspose.Imaging.dll (25.7.0)

Represents object with Size which are expressed in real numbers (in inches).

public interface IObjectWithSizeF
   {
      double Width { get; }
      double Height { get; }
   }

Properties

HeightF

Gets the object height, in inches.

float HeightF
   {
      get;
   }

Property Value

float

SizeF

Gets the object size, in inches.

SizeF GetSizeF()
   {
      return this.SizeF;
   }

Property Value

SizeF

WidthF

Gets the object width, in inches.

float WidthF
   {
      get;
   }

Property Value

float

 English