Class WmfFillRegion

Class WmfFillRegion

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

The META_FILLREGION record fills a region using a specified brush.

public class WmfFillRegion : WmfObject
   {
       private Region _region;
       public Region Region
       {
           get { return this._region; }
           set { this._region = value; }
       }
   }

Inheritance

object MetaObject WmfObject WmfFillRegion

Inherited Members

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

Constructors

WmfFillRegion()

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

public WmfFillRegion()
   {
   }

WmfFillRegion(WmfGraphicObject, WmfGraphicObject)

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

public WmfFillRegion(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

RegionIndex

Gets or sets the index of the region.

public int RegionIndex
   {
      get;
      set;
   }

Property Value

int

 English