Class EmfPlusSetClipRect
Namespace: Aspose.Imaging.FileFormats.Emf.EmfPlus.Records
Assembly: Aspose.Imaging.dll (25.7.0)
The EmfPlusSetClipRect record combines the current clipping region with a rectangle.
public sealed class EmfPlusSetClipRect : EmfPlusClippingRecordType
{
public RectangleLz rect;
}
Assuming the original code looks like this:
public sealed class EmfPlusSetClipRect : EmfPlusClippingRecordType
{
public RectangleLz rect;
}
Inheritance
object ← MetaObject ← EmfPlusRecord ← EmfPlusClippingRecordType ← EmfPlusSetClipRect
Inherited Members
EmfPlusRecord.Type , EmfPlusRecord.Flags , EmfPlusRecord.Size , EmfPlusRecord.DataSize , object.GetType() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()
Constructors
EmfPlusSetClipRect(EmfPlusRecord)
Initializes a new instance of the Aspose.Imaging.FileFormats.Emf.EmfPlus.Records.EmfPlusSetClipRect class.
public void EmfPlusSetClipRect(EmfPlusRecord source)
{
}
Parameters
source
EmfPlusRecord
The source.
Properties
ClipRect
Gets or sets an EmfPlusRectF object (section 2.2.2.39) that defines the rectangle touse in the CombineMode operation.
public RectangleF ClipRect
{
get;
set;
}
Property Value
Cm
Gets or sets the CM (4 bits): Specifies the logical operation for combining two regions. See theCombineMode enumeration (section 2.1.1.4) for the meanings of the values.
public EmfPlusCombineMode cm
{
get;
set;
}