Skip to content

Commit

Permalink
Release 24.7 - Net updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Samer El-Khatib committed Jul 3, 2024
1 parent a64decb commit a895392
Show file tree
Hide file tree
Showing 902 changed files with 1,153 additions and 982 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ url: /net/aspose.imaging.fileformats.cdr.objects/cdrtransforms/transforms/
Gets or sets the transforms.

```csharp
public List<#=zpf_O6_RFZNgJEFBeavcShNM=> Transforms { get; set; }
public List<#=zc2eJoM6xVUfuj_cEkQItiOg=> Transforms { get; set; }
```

### Property Value
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ The namespace contains types [MS-EMF]: Enhanced Metafile Format. 2.3 EMF Records
| [EmfBeginPath](./emfbeginpath/) | This record opens a path bracket in the current playback device context. After a path bracket is open, an application can begin processing records to define the points that lie in the path.An application MUST close an open path bracket by processing the EMR_ENDPATH record. When an application processes the EMR_BEGINPATH record, all previous paths MUST be discarded from the playback device context. |
| [EmfBitBlt](./emfbitblt/) | The EMR_BITBLT record specifies a block transfer of pixels from a source bitmap to a destination rectangle, optionally in combination with a brush pattern, according to a specified raster operation. |
| [EmfBitmapRecordType](./emfbitmaprecordtype/) | The bitmap record types perform block transfers of bitmap images. |
| [EmfBoundedRecord](./emfboundedrecord/) | Base EMF polyshape class. |
| [EmfChord](./emfchord/) | The EMR_CHORD record specifies a chord, which is a region bounded by the intersection of an ellipse and a line segment, called a secant. The chord is outlined by using the current pen and filled by using the current brush. |
| [EmfClippingRecordType](./emfclippingrecordtype/) | The clipping record types specify and manage clipping regions. Note The EMR_SETMETARGN record does not specify parameters. |
| [EmfCloseFigure](./emfclosefigure/) | This record closes an open figure in a path. Processing the EMR_CLOSEFIGURE record MUST close the figure by drawing a line from the current position to the first point of the figure, and then it MUST connect the lines by using the line join style.If a figure is closed by processing the EMR_LINETO record instead of the EMR_CLOSEFIGURE record, end caps are used to create the corner instead of a join.EMR_LINETO is specified in section 2.3.5.13. The EMR_CLOSEFIGURE record SHOULD only be used if there is an open path bracket in the playback device context. A figure in a path is open unless it is explicitly closed by processing this record. |
Expand Down Expand Up @@ -101,6 +102,8 @@ The namespace contains types [MS-EMF]: Enhanced Metafile Format. 2.3 EMF Records
| [EmfPolyPolygon16](./emfpolypolygon16/) | The EMR_POLYPOLYGON16 record specifies a series of closed polygons. Each polygon is outlined using the current pen, and filled using the current brush and polygon fill mode. The polygons drawn by this record can overlap. |
| [EmfPolyPolyline](./emfpolypolyline/) | The EMR_POLYPOLYLINE record specifies multiple series of connected line segments. |
| [EmfPolyPolyline16](./emfpolypolyline16/) | The EMR_POLYPOLYLINE16 record specifies multiple series of connected line segments. |
| [EmfPolyPolyShape](./emfpolypolyshape/) | base EMF poly polyshape class. |
| [EmfPolyShape](./emfpolyshape/) | Base EMF polyshape class. |
| [EmfPolyTextOutA](./emfpolytextouta/) | The EMR_POLYTEXTOUTA record draws one or more ASCII text strings using the current font and text colors. |
| [EmfPolyTextOutW](./emfpolytextoutw/) | The EMR_POLYTEXTOUTW record draws one or more Unicode text strings using the current font and text colors. |
| [EmfRealizePalette](./emfrealizepalette/) | This record maps palette entries from the current LogPalette object (section 2.2.17) to the system_palette. This EMF record specifies no parameters. |
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
title: Class EmfBoundedRecord
second_title: Aspose.Imaging for .NET API Reference
description: Aspose.Imaging.FileFormats.Emf.Emf.Records.EmfBoundedRecord class. Base EMF polyshape class
type: docs
weight: 3320
url: /net/aspose.imaging.fileformats.emf.emf.records/emfboundedrecord/
---
## EmfBoundedRecord class

Base EMF polyshape class.

```csharp
public abstract class EmfBoundedRecord : EmfDrawingRecordType
```

## Properties

| Name | Description |
| --- | --- |
| [Bounds](../../aspose.imaging.fileformats.emf.emf.records/emfboundedrecord/bounds/) { get; set; } | Gets or sets an 128-bit WMF RectL object ([MS-WMF] section 2.2.2.19) that specifies the bounding rectangle, in device units. |
| [Size](../../aspose.imaging.fileformats.emf.emf.records/emfrecord/size/) { getset; } | Gets or sets the size of the record |
| [Type](../../aspose.imaging.fileformats.emf.emf.records/emfrecord/type/) { get; set; } | Gets or sets the type. |

### See Also

* class [EmfDrawingRecordType](../emfdrawingrecordtype/)
* namespace [Aspose.Imaging.FileFormats.Emf.Emf.Records](../../aspose.imaging.fileformats.emf.emf.records/)
* assembly [Aspose.Imaging](../../)


Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
title: EmfBoundedRecord.Bounds
second_title: Aspose.Imaging for .NET API Reference
description: EmfBoundedRecord property. Gets or sets an 128bit WMF RectL object MSWMF section 2.2.2.19 that specifies the bounding rectangle in device units
type: docs
weight: 10
url: /net/aspose.imaging.fileformats.emf.emf.records/emfboundedrecord/bounds/
---
## EmfBoundedRecord.Bounds property

Gets or sets an 128-bit WMF RectL object ([MS-WMF] section 2.2.2.19) that specifies the bounding rectangle, in device units.

```csharp
public Rectangle Bounds { get; set; }
```

### See Also

* struct [Rectangle](../../../aspose.imaging/rectangle/)
* class [EmfBoundedRecord](../)
* namespace [Aspose.Imaging.FileFormats.Emf.Emf.Records](../../emfboundedrecord/)
* assembly [Aspose.Imaging](../../../)


Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Class EmfChord
second_title: Aspose.Imaging for .NET API Reference
description: Aspose.Imaging.FileFormats.Emf.Emf.Records.EmfChord class. The EMR_CHORD record specifies a chord which is a region bounded by the intersection of an ellipse and a line segment called a secant. The chord is outlined by using the current pen and filled by using the current brush
type: docs
weight: 3320
weight: 3330
url: /net/aspose.imaging.fileformats.emf.emf.records/emfchord/
---
## EmfChord class
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Class EmfClippingRecordType
second_title: Aspose.Imaging for .NET API Reference
description: Aspose.Imaging.FileFormats.Emf.Emf.Records.EmfClippingRecordType class. The clipping record types specify and manage clipping regions. Note The EMR_SETMETARGN record does not specify parameters
type: docs
weight: 3330
weight: 3340
url: /net/aspose.imaging.fileformats.emf.emf.records/emfclippingrecordtype/
---
## EmfClippingRecordType class
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Class EmfCloseFigure
second_title: Aspose.Imaging for .NET API Reference
description: Aspose.Imaging.FileFormats.Emf.Emf.Records.EmfCloseFigure class. This record closes an open figure in a path. Processing the EMR_CLOSEFIGURE record MUST close the figure by drawing a line from the current position to the first point of the figure and then it MUST connect the lines by using the line join style.If a figure is closed by processing the EMR_LINETO record instead of the EMR_CLOSEFIGURE record end caps are used to create the corner instead of a join.EMR_LINETO is specified in section 2.3.5.13. The EMR_CLOSEFIGURE record SHOULD only be used if there is an open path bracket in the playback device context. A figure in a path is open unless it is explicitly closed by processing this record
type: docs
weight: 3340
weight: 3350
url: /net/aspose.imaging.fileformats.emf.emf.records/emfclosefigure/
---
## EmfCloseFigure class
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Class EmfColorCorrectPalette
second_title: Aspose.Imaging for .NET API Reference
description: Aspose.Imaging.FileFormats.Emf.Emf.Records.EmfColorCorrectPalette class. The EMR_COLORCORRECTPALETTE record specifies how to correct the entries of a logical palette object using WCS 1.0 values
type: docs
weight: 3350
weight: 3360
url: /net/aspose.imaging.fileformats.emf.emf.records/emfcolorcorrectpalette/
---
## EmfColorCorrectPalette class
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Class EmfColorMatchToTargetW
second_title: Aspose.Imaging for .NET API Reference
description: Aspose.Imaging.FileFormats.Emf.Emf.Records.EmfColorMatchToTargetW class. The EMR_COLORMATCHTOTargetW record specifies whether to perform color matching with a color profile that is specified in a file with a name consisting of Unicode characters
type: docs
weight: 3360
weight: 3370
url: /net/aspose.imaging.fileformats.emf.emf.records/emfcolormatchtotargetw/
---
## EmfColorMatchToTargetW class
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Class EmfComment
second_title: Aspose.Imaging for .NET API Reference
description: Aspose.Imaging.FileFormats.Emf.Emf.Records.EmfComment class. The EMR_COMMENT record contains arbitrary private data. Note Fields that are not described in this section are specified in section 2.3.3
type: docs
weight: 3370
weight: 3380
url: /net/aspose.imaging.fileformats.emf.emf.records/emfcomment/
---
## EmfComment class
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Class EmfCommentBeginGroup
second_title: Aspose.Imaging for .NET API Reference
description: Aspose.Imaging.FileFormats.Emf.Emf.Records.EmfCommentBeginGroup class. The EMR_COMMENT_BEGINGROUP record specifies the beginning of a group of drawing records
type: docs
weight: 3380
weight: 3390
url: /net/aspose.imaging.fileformats.emf.emf.records/emfcommentbegingroup/
---
## EmfCommentBeginGroup class
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Class EmfCommentEmfPlus
second_title: Aspose.Imaging for .NET API Reference
description: Aspose.Imaging.FileFormats.Emf.Emf.Records.EmfCommentEmfPlus class. The EMR_COMMENT_EMFPLUS record contains embedded EMF records. Note Fields that are not described in this section are specified in section 2.3.3
type: docs
weight: 3390
weight: 3400
url: /net/aspose.imaging.fileformats.emf.emf.records/emfcommentemfplus/
---
## EmfCommentEmfPlus class
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Enum EmfCommentEmfSpool.EmfSpoolRecordIdentifierEnum
second_title: Aspose.Imaging for .NET API Reference
description: Aspose.Imaging.FileFormats.Emf.Emf.Records.EmfCommentEmfSpoolEmfSpoolRecordIdentifierEnum enum. Identifies the type of EMR_COMMENT_EMFSPOOL record
type: docs
weight: 3410
weight: 3420
url: /net/aspose.imaging.fileformats.emf.emf.records/emfcommentemfspool.emfspoolrecordidentifierenum/
---
## EmfCommentEmfSpool.EmfSpoolRecordIdentifierEnum enumeration
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Class EmfCommentEmfSpool
second_title: Aspose.Imaging for .NET API Reference
description: Aspose.Imaging.FileFormats.Emf.Emf.Records.EmfCommentEmfSpool class. The EMR_COMMENT_EMFSPOOL record contains embedded EMFSPOOL records. Note Fields that are not described in this section are specified in section 2.3.3
type: docs
weight: 3400
weight: 3410
url: /net/aspose.imaging.fileformats.emf.emf.records/emfcommentemfspool/
---
## EmfCommentEmfSpool class
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Class EmfCommentEndGroup
second_title: Aspose.Imaging for .NET API Reference
description: Aspose.Imaging.FileFormats.Emf.Emf.Records.EmfCommentEndGroup class. The EMR_COMMENT_ENDGROUP record specifies the end of a group of drawing records
type: docs
weight: 3420
weight: 3430
url: /net/aspose.imaging.fileformats.emf.emf.records/emfcommentendgroup/
---
## EmfCommentEndGroup class
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Class EmfCommentMultiFormats
second_title: Aspose.Imaging for .NET API Reference
description: Aspose.Imaging.FileFormats.Emf.Emf.Records.EmfCommentMultiFormats class. The EMR_COMMENT_MULTIFORMATS record specifies an image in multiple graphics formats
type: docs
weight: 3430
weight: 3440
url: /net/aspose.imaging.fileformats.emf.emf.records/emfcommentmultiformats/
---
## EmfCommentMultiFormats class
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Class EmfCommentPublicRecordType
second_title: Aspose.Imaging for .NET API Reference
description: Aspose.Imaging.FileFormats.Emf.Emf.Records.EmfCommentPublicRecordType class. The EMR_COMMENT_PUBLIC record types specify extensions to EMF processing
type: docs
weight: 3440
weight: 3450
url: /net/aspose.imaging.fileformats.emf.emf.records/emfcommentpublicrecordtype/
---
## EmfCommentPublicRecordType class
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Enum EmfCommentRecordType.CommentIdentifierEnum
second_title: Aspose.Imaging for .NET API Reference
description: Aspose.Imaging.FileFormats.Emf.Emf.Records.EmfCommentRecordTypeCommentIdentifierEnum enum. Valid comment identifier values
type: docs
weight: 3460
weight: 3470
url: /net/aspose.imaging.fileformats.emf.emf.records/emfcommentrecordtype.commentidentifierenum/
---
## EmfCommentRecordType.CommentIdentifierEnum enumeration
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Class EmfCommentRecordType
second_title: Aspose.Imaging for .NET API Reference
description: Aspose.Imaging.FileFormats.Emf.Emf.Records.EmfCommentRecordType class. The comment record types define formats for specifying arbitrary private data embedding records in other metafile formats and adding new or specialpurpose commands
type: docs
weight: 3450
weight: 3460
url: /net/aspose.imaging.fileformats.emf.emf.records/emfcommentrecordtype/
---
## EmfCommentRecordType class
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Class EmfCommentWindowsMetaFile
second_title: Aspose.Imaging for .NET API Reference
description: Aspose.Imaging.FileFormats.Emf.Emf.Records.EmfCommentWindowsMetaFile class. The EMR_COMMENT_WINDOWS_METAFILE record specifies an image in an embedded WMF metafile
type: docs
weight: 3470
weight: 3480
url: /net/aspose.imaging.fileformats.emf.emf.records/emfcommentwindowsmetafile/
---
## EmfCommentWindowsMetaFile class
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Class EmfControlRecordType
second_title: Aspose.Imaging for .NET API Reference
description: Aspose.Imaging.FileFormats.Emf.Emf.Records.EmfControlRecordType class. The control record types define the start and end of an EMF metafile and properties of the metafile
type: docs
weight: 3480
weight: 3490
url: /net/aspose.imaging.fileformats.emf.emf.records/emfcontrolrecordtype/
---
## EmfControlRecordType class
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Class EmfCreateBrushIndirect
second_title: Aspose.Imaging for .NET API Reference
description: Aspose.Imaging.FileFormats.Emf.Emf.Records.EmfCreateBrushIndirect class. The EMR_CREATEBRUSHINDIRECT record defines a logical brush for graphics operations
type: docs
weight: 3490
weight: 3500
url: /net/aspose.imaging.fileformats.emf.emf.records/emfcreatebrushindirect/
---
## EmfCreateBrushIndirect class
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Class EmfCreateColorSpace
second_title: Aspose.Imaging for .NET API Reference
description: Aspose.Imaging.FileFormats.Emf.Emf.Records.EmfCreateColorSpace class. The EMR_CREATECOLORSPACE record creates a logical color space object from a color profile with a name consisting of ASCII characters
type: docs
weight: 3500
weight: 3510
url: /net/aspose.imaging.fileformats.emf.emf.records/emfcreatecolorspace/
---
## EmfCreateColorSpace class
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Class EmfCreateColorSpaceW
second_title: Aspose.Imaging for .NET API Reference
description: Aspose.Imaging.FileFormats.Emf.Emf.Records.EmfCreateColorSpaceW class. The EMR_CREATECOLORSPACEW record creates a logical color space object from a color profile with a name consisting of Unicode characters
type: docs
weight: 3510
weight: 3520
url: /net/aspose.imaging.fileformats.emf.emf.records/emfcreatecolorspacew/
---
## EmfCreateColorSpaceW class
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Class EmfCreateDibPatternBrushPt
second_title: Aspose.Imaging for .NET API Reference
description: Aspose.Imaging.FileFormats.Emf.Emf.Records.EmfCreateDibPatternBrushPt class. The EMR_CREATEDIBPATTERNBRUSHPT record defines a pattern brush for graphics operations. The pattern is specified by a DIB
type: docs
weight: 3520
weight: 3530
url: /net/aspose.imaging.fileformats.emf.emf.records/emfcreatedibpatternbrushpt/
---
## EmfCreateDibPatternBrushPt class
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Class EmfCreateMonoBrush
second_title: Aspose.Imaging for .NET API Reference
description: Aspose.Imaging.FileFormats.Emf.Emf.Records.EmfCreateMonoBrush class. The EMR_CREATEMONOBRUSH record defines a monochrome pattern brush for graphics operations. The pattern is specified by a monochrome DIB
type: docs
weight: 3530
weight: 3540
url: /net/aspose.imaging.fileformats.emf.emf.records/emfcreatemonobrush/
---
## EmfCreateMonoBrush class
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Class EmfCreatePalette
second_title: Aspose.Imaging for .NET API Reference
description: Aspose.Imaging.FileFormats.Emf.Emf.Records.EmfCreatePalette class. The EMR_CREATEPALETTE record defines a logical palette for graphics operations
type: docs
weight: 3540
weight: 3550
url: /net/aspose.imaging.fileformats.emf.emf.records/emfcreatepalette/
---
## EmfCreatePalette class
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Class EmfCreatePen
second_title: Aspose.Imaging for .NET API Reference
description: Aspose.Imaging.FileFormats.Emf.Emf.Records.EmfCreatePen class. The EMR_CREATEPEN record defines a logical pen for graphics operations
type: docs
weight: 3550
weight: 3560
url: /net/aspose.imaging.fileformats.emf.emf.records/emfcreatepen/
---
## EmfCreatePen class
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Class EmfDeleteColorSpace
second_title: Aspose.Imaging for .NET API Reference
description: Aspose.Imaging.FileFormats.Emf.Emf.Records.EmfDeleteColorSpace class. The EMR_DELETECOLORSPACE record deletes a logical color space object
type: docs
weight: 3560
weight: 3570
url: /net/aspose.imaging.fileformats.emf.emf.records/emfdeletecolorspace/
---
## EmfDeleteColorSpace class
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Class EmfDeleteObject
second_title: Aspose.Imaging for .NET API Reference
description: Aspose.Imaging.FileFormats.Emf.Emf.Records.EmfDeleteObject class. The EMR_DELETEOBJECT record deletes a graphics object which is specified by its index in the EMF Object Tablesection 3.1.1.1
type: docs
weight: 3570
weight: 3580
url: /net/aspose.imaging.fileformats.emf.emf.records/emfdeleteobject/
---
## EmfDeleteObject class
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Class EmfDrawEscape
second_title: Aspose.Imaging for .NET API Reference
description: Aspose.Imaging.FileFormats.Emf.Emf.Records.EmfDrawEscape class. The EMR_DRAWESCAPE record passes arbitrary information to a printer driver. The intent is that the information will result in drawing being done
type: docs
weight: 3580
weight: 3590
url: /net/aspose.imaging.fileformats.emf.emf.records/emfdrawescape/
---
## EmfDrawEscape class
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Class EmfDrawingRecordType
second_title: Aspose.Imaging for .NET API Reference
description: Aspose.Imaging.FileFormats.Emf.Emf.Records.EmfDrawingRecordType class. The drawing record types perform graphics drawing
type: docs
weight: 3590
weight: 3600
url: /net/aspose.imaging.fileformats.emf.emf.records/emfdrawingrecordtype/
---
## EmfDrawingRecordType class
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Class EmfEllipse
second_title: Aspose.Imaging for .NET API Reference
description: Aspose.Imaging.FileFormats.Emf.Emf.Records.EmfEllipse class. The EMR_ELLIPSE record specifies an ellipse. The center of the ellipse is the center of the specified bounding rectangle. The ellipse is outlined by using the current pen and is filled by using the current brush
type: docs
weight: 3600
weight: 3610
url: /net/aspose.imaging.fileformats.emf.emf.records/emfellipse/
---
## EmfEllipse class
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Class EmfEndPath
second_title: Aspose.Imaging for .NET API Reference
description: Aspose.Imaging.FileFormats.Emf.Emf.Records.EmfEndPath class. This record closes a path bracket and selects the path defined by the bracket into the playback device context
type: docs
weight: 3610
weight: 3620
url: /net/aspose.imaging.fileformats.emf.emf.records/emfendpath/
---
## EmfEndPath class
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Class EmfEof
second_title: Aspose.Imaging for .NET API Reference
description: Aspose.Imaging.FileFormats.Emf.Emf.Records.EmfEof class. The EMR_EOF record indicates the end of the metafile and specifies a palette
type: docs
weight: 3620
weight: 3630
url: /net/aspose.imaging.fileformats.emf.emf.records/emfeof/
---
## EmfEof class
Expand Down
Loading

0 comments on commit a895392

Please sign in to comment.