Class EmfPlusBeginContainer
Namespace: Aspose.Imaging.FileFormats.Emf.EmfPlus.Records
Assembly: Aspose.Imaging.dll (25.7.0)
The EmfPlusBeginContainer record opens a new graphics state container and specifies a transform for it.
public sealed class EmfPlusBeginContainer : EmfPlusStateRecordType
{
}
In case there is actual code within the `EmfPlusBeginContainer` class, it should be indented and properly spaced accordingly. For example:
public sealed class EmfPlusBeginContainer : EmfPlusStateRecordType
{
public ushort RecordVersion { get; set; }
private readonly long _recordSize = (long)Marshal.SizeOf<EmfPlusBeginContainer>();
public override long RecordSize { get { return _recordSize; } }
}
Inheritance
object ← MetaObject ← EmfPlusRecord ← EmfPlusStateRecordType ← EmfPlusBeginContainer
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
EmfPlusBeginContainer(EmfPlusRecord)
Initializes a new instance of the Aspose.Imaging.FileFormats.Emf.EmfPlus.Records.EmfPlusBeginContainer class.
public EmfPlusBeginContainer(EmfPlusRecord source)
{
}
Parameters
source
EmfPlusRecord
The source.
Properties
DestRect
Gets or sets an EmfPlusRectF object (section 2.2.2.39) that, with SrcRect, specifiesa transform for the container. This transformation results in SrcRect when applied to DestRect.
public RectangleF DestRect
{
get;
set;
}
Property Value
PageUnit
Gets the page unit.
public EmfPlusUnitType pageUnit
{
get;
}
Property Value
SrcRect
Gets or sets an EmfPlusRectF rectangle that, with DestRect, specifies a transformationfor the container. This transformation results in SrcRect when applied to DestRect.
public RectangleF SrcRect
{
get;
set;
}
Property Value
StackIndex
Gets or sets a 32-bit unsigned integer that specifies an index to associate with thegraphics state container. The index MUST be referenced by a subsequentEmfPlusEndContainer record (section 2.3.7.3) to close the graphics state container.
public int StackIndex
{
get;
set;
}