Class EmfExtFloodFill

Class EmfExtFloodFill

Namespace: Aspose.Imaging.FileFormats.Emf.Emf.Records
Assembly: Aspose.Imaging.dll (25.7.0)

The EMR_EXTFLOODFILL record fills an area of the display surface with the current brush

public sealed class EmfExtFloodFill : EmfDrawingRecordType
   {
       public int pen;
       public byte mode;
       public System.Drawing.Point pt;
       public int rgbR;
       public int rgbG;
       public int rgbB;
       public int rgbReserved;
   }

Inheritance

object MetaObject EmfRecord EmfDrawingRecordType EmfExtFloodFill

Inherited Members

EmfRecord.Type , EmfRecord.Size , object.GetType() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()

Constructors

EmfExtFloodFill(EmfRecord)

Initializes a new instance of the Aspose.Imaging.FileFormats.Emf.Emf.Records.EmfExtFloodFill class.

public EmfExtFloodFill(EmfRecord source)
   {
   }

Parameters

source EmfRecord

The source.

Properties

Argb32Color

Gets or sets a WMF ColorRef object ([MS-WMF] section 2.2.2.8), which is used with theFloodFillMode to determine the area to fill.

public int Argb32Color
   {
      get;
      set;
   }

Property Value

int

FloodFillMode

Gets or sets a 32-bit unsigned integer that specifies how to use the Color valueto determine the area for the flood fill operation. The value MUST be in the FloodFillenumeration (section 2.1.13).

public EmfFloodFill FloodFillMode
    {
        get;
        set;
    }

Property Value

EmfFloodFill

Start

Gets or sets a WMF PointL object ([MS-WMF] section 2.2.2.15), which specifies thecoordinates, in logical units, where filling begins.

public Point Start
   {
      get;
      set;
   }

Property Value

Point

 English