Class EmfLogPen

Class EmfLogPen

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

The LogPen object defines the style, width, and color of a logical pen.

public sealed class EmfLogPen : EmfBasePen
   {
       private int m_iWidth;
       private LogBrush m_Brush;
       public EmfLogPen(int iWidth, LogBrush brush)
       {
           this.m_iWidth = iWidth;
           this.m_Brush = brush;
       }
       public override void Draw(Graphics graphics, Rectangle rectangle)
       {
       }
   }

Inheritance

object MetaObject EmfObject EmfBasePen EmfLogPen

Inherited Members

EmfBasePen.PenStyle , EmfBasePen.Argb32ColorRef , object.GetType() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()

Constructors

EmfLogPen()

public EmfLogPen()
   {
   }

Properties

AffectWidth

Gets or sets the width of the affect.

public int AffectWidth
   {
      get;
      set;
   }

Property Value

int

Argb32ColorRef

Gets or sets a WMF ColorRef object ([MS-WMF] section 2.2.2.8) that specifies the pen color value.

public override int Argb32ColorRef
    {
        get;
        set;
    }

Property Value

int

PenStyle

Gets or sets a 32-bit unsigned integer that specifies the PenStyle. The value MUST bedefined from the PenStyle enumeration table, specified in section 2.1.25.

public override EmfPenStyle PenStyle
    {
        get;
        set;
    }

Property Value

EmfPenStyle

Width

Gets or sets a WMF PointL object ([MS-WMF] section 2.2.2.15) that specifies the width ofthe pen by the value of its x field. The value of its y field MUST be ignored.

public Point Width
   {
      get;
      set;
   }

Property Value

Point

 English