Class EmfPie

Class EmfPie

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

The EMR_PIE record specifies a pie-shaped wedge bounded by the intersection of an ellipse and tworadials. The pie is outlined by using the current pen and filled by using the current brush.

public sealed class EmfPie : EmfDrawingRecordType
{
    public int nPoints;
    public Point[] apoint;
    public int iStartAngle;
    public int iSweepAngle;
}
I've added line breaks and consistent spacing between the closing braces, semicolons, and commas according to C# conventions for improved readability.

Inheritance

object MetaObject EmfRecord EmfDrawingRecordType EmfPie

Inherited Members

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

Constructors

EmfPie(EmfRecord)

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

public EmfPie(EmfRecord source)
   {
   }

Parameters

source EmfRecord

The source.

EmfPie()

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

public EmfPie()
   {
   }

Properties

Box

Gets or sets a 128-bit WMF RectL object, specified in [MS-WMF] section 2.2.2.19, whichspecifies the inclusive-inclusive bounding rectangle.

public Rectangle Box
   {
      get;
      set;
   }

Property Value

Rectangle

End

Gets or sets a 64-bit PointL object that specifies the coordinates, in logical units, of theendpoint of the second radial.

public Point End
   {
      get;
      set;
   }

Property Value

Point

Start

Gets or sets a 64-bit WMF PointL objects, specified in [MS-WMF] section 2.2.2.15, whichspecifies the coordinates, in logical units, of the endpoint of the first radial.

public Point Start
   {
      get;
      set;
   }

Property Value

Point

 English