Skip to content

Commit a895392

Browse files
author
Samer El-Khatib
committed
Release 24.7 - Net updates
1 parent a64decb commit a895392

File tree

902 files changed

+1153
-982
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

902 files changed

+1153
-982
lines changed

english/net/aspose.imaging.fileformats.cdr.objects/cdrtransforms/transforms/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ url: /net/aspose.imaging.fileformats.cdr.objects/cdrtransforms/transforms/
1111
Gets or sets the transforms.
1212

1313
```csharp
14-
public List<#=zpf_O6_RFZNgJEFBeavcShNM=> Transforms { get; set; }
14+
public List<#=zc2eJoM6xVUfuj_cEkQItiOg=> Transforms { get; set; }
1515
```
1616

1717
### Property Value

english/net/aspose.imaging.fileformats.emf.emf.records/_index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ The namespace contains types [MS-EMF]: Enhanced Metafile Format. 2.3 EMF Records
2020
| [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. |
2121
| [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. |
2222
| [EmfBitmapRecordType](./emfbitmaprecordtype/) | The bitmap record types perform block transfers of bitmap images. |
23+
| [EmfBoundedRecord](./emfboundedrecord/) | Base EMF polyshape class. |
2324
| [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. |
2425
| [EmfClippingRecordType](./emfclippingrecordtype/) | The clipping record types specify and manage clipping regions. Note The EMR_SETMETARGN record does not specify parameters. |
2526
| [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. |
@@ -101,6 +102,8 @@ The namespace contains types [MS-EMF]: Enhanced Metafile Format. 2.3 EMF Records
101102
| [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. |
102103
| [EmfPolyPolyline](./emfpolypolyline/) | The EMR_POLYPOLYLINE record specifies multiple series of connected line segments. |
103104
| [EmfPolyPolyline16](./emfpolypolyline16/) | The EMR_POLYPOLYLINE16 record specifies multiple series of connected line segments. |
105+
| [EmfPolyPolyShape](./emfpolypolyshape/) | base EMF poly polyshape class. |
106+
| [EmfPolyShape](./emfpolyshape/) | Base EMF polyshape class. |
104107
| [EmfPolyTextOutA](./emfpolytextouta/) | The EMR_POLYTEXTOUTA record draws one or more ASCII text strings using the current font and text colors. |
105108
| [EmfPolyTextOutW](./emfpolytextoutw/) | The EMR_POLYTEXTOUTW record draws one or more Unicode text strings using the current font and text colors. |
106109
| [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. |
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
title: Class EmfBoundedRecord
3+
second_title: Aspose.Imaging for .NET API Reference
4+
description: Aspose.Imaging.FileFormats.Emf.Emf.Records.EmfBoundedRecord class. Base EMF polyshape class
5+
type: docs
6+
weight: 3320
7+
url: /net/aspose.imaging.fileformats.emf.emf.records/emfboundedrecord/
8+
---
9+
## EmfBoundedRecord class
10+
11+
Base EMF polyshape class.
12+
13+
```csharp
14+
public abstract class EmfBoundedRecord : EmfDrawingRecordType
15+
```
16+
17+
## Properties
18+
19+
| Name | Description |
20+
| --- | --- |
21+
| [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. |
22+
| [Size](../../aspose.imaging.fileformats.emf.emf.records/emfrecord/size/) { getset; } | Gets or sets the size of the record |
23+
| [Type](../../aspose.imaging.fileformats.emf.emf.records/emfrecord/type/) { get; set; } | Gets or sets the type. |
24+
25+
### See Also
26+
27+
* class [EmfDrawingRecordType](../emfdrawingrecordtype/)
28+
* namespace [Aspose.Imaging.FileFormats.Emf.Emf.Records](../../aspose.imaging.fileformats.emf.emf.records/)
29+
* assembly [Aspose.Imaging](../../)
30+
31+
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
title: EmfBoundedRecord.Bounds
3+
second_title: Aspose.Imaging for .NET API Reference
4+
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
5+
type: docs
6+
weight: 10
7+
url: /net/aspose.imaging.fileformats.emf.emf.records/emfboundedrecord/bounds/
8+
---
9+
## EmfBoundedRecord.Bounds property
10+
11+
Gets or sets an 128-bit WMF RectL object ([MS-WMF] section 2.2.2.19) that specifies the bounding rectangle, in device units.
12+
13+
```csharp
14+
public Rectangle Bounds { get; set; }
15+
```
16+
17+
### See Also
18+
19+
* struct [Rectangle](../../../aspose.imaging/rectangle/)
20+
* class [EmfBoundedRecord](../)
21+
* namespace [Aspose.Imaging.FileFormats.Emf.Emf.Records](../../emfboundedrecord/)
22+
* assembly [Aspose.Imaging](../../../)
23+
24+

english/net/aspose.imaging.fileformats.emf.emf.records/emfchord/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Class EmfChord
33
second_title: Aspose.Imaging for .NET API Reference
44
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
55
type: docs
6-
weight: 3320
6+
weight: 3330
77
url: /net/aspose.imaging.fileformats.emf.emf.records/emfchord/
88
---
99
## EmfChord class

english/net/aspose.imaging.fileformats.emf.emf.records/emfclippingrecordtype/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Class EmfClippingRecordType
33
second_title: Aspose.Imaging for .NET API Reference
44
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
55
type: docs
6-
weight: 3330
6+
weight: 3340
77
url: /net/aspose.imaging.fileformats.emf.emf.records/emfclippingrecordtype/
88
---
99
## EmfClippingRecordType class

english/net/aspose.imaging.fileformats.emf.emf.records/emfclosefigure/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Class EmfCloseFigure
33
second_title: Aspose.Imaging for .NET API Reference
44
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
55
type: docs
6-
weight: 3340
6+
weight: 3350
77
url: /net/aspose.imaging.fileformats.emf.emf.records/emfclosefigure/
88
---
99
## EmfCloseFigure class

english/net/aspose.imaging.fileformats.emf.emf.records/emfcolorcorrectpalette/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Class EmfColorCorrectPalette
33
second_title: Aspose.Imaging for .NET API Reference
44
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
55
type: docs
6-
weight: 3350
6+
weight: 3360
77
url: /net/aspose.imaging.fileformats.emf.emf.records/emfcolorcorrectpalette/
88
---
99
## EmfColorCorrectPalette class

english/net/aspose.imaging.fileformats.emf.emf.records/emfcolormatchtotargetw/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Class EmfColorMatchToTargetW
33
second_title: Aspose.Imaging for .NET API Reference
44
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
55
type: docs
6-
weight: 3360
6+
weight: 3370
77
url: /net/aspose.imaging.fileformats.emf.emf.records/emfcolormatchtotargetw/
88
---
99
## EmfColorMatchToTargetW class

english/net/aspose.imaging.fileformats.emf.emf.records/emfcomment/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Class EmfComment
33
second_title: Aspose.Imaging for .NET API Reference
44
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
55
type: docs
6-
weight: 3370
6+
weight: 3380
77
url: /net/aspose.imaging.fileformats.emf.emf.records/emfcomment/
88
---
99
## EmfComment class

0 commit comments

Comments
 (0)