Class WmfFrameRegion

Class WmfFrameRegion

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

The wmf frame region object.

public class WmfFrameRegion : WmfObject
   {
       private PointF leftTop;
       private SizeF size;
       private Region region;
       public PointF LeftTop
       {
           get { return this.leftTop; }
           set { this.leftTop = value; }
       }
       public SizeF Size
       {
           get { return this.size; }
           set { this.size = value; }
       }
       public Region Region
       {
           get { return this.region; }
           set { this.region = value; }
       }
   }

Inheritance

object MetaObject WmfObject WmfFrameRegion

Inherited Members

object.GetType() , object.MemberwiseClone() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()

Constructors

WmfFrameRegion()

Initializes a new instance of the Aspose.Imaging.FileFormats.Wmf.Objects.WmfFillRegion class.

public WmfFrameRegion()
   {
   }

WmfFrameRegion(WmfGraphicObject, WmfGraphicObject)

Initializes a new instance of the Aspose.Imaging.FileFormats.Wmf.Objects.WmfFillRegion class.

public WmfFrameRegion(WmfGraphicObject region, WmfGraphicObject brush)
   {
   }

Parameters

region WmfGraphicObject

The region.

brush WmfGraphicObject

The brush.

Properties

BrushIndex

Gets or sets the index of the brush.

public int BrushIndex
   {
      get;
      set;
   }

Property Value

int

Height

Gets or sets the height.

public short Height
    {
        get;
        set;
    }

Property Value

short

RegionIndex

Gets or sets the index of the region.

public int RegionIndex
    {
        get;
        set;
    }

Property Value

int

Width

Gets or sets the width.

public short Width
   {
      get;
      set;
   }

Property Value

short

 English