Class EmfPlusSave

Class EmfPlusSave

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

The EmfPlusSave record saves the graphics state, identified by a specified index, on a stack of saved graphics states.

public sealed class EmfPlusSave : EmfPlusStateRecordType
{
    public EmfPlusSave()
        : base(EMF_PLUS_SAVE)
    {
    }
    private EmfPlusRecord _record;
    public override EmfPlusRecord Record
    {
        get { return _record; }
        set { _record = value; }
    }
}

Inheritance

object MetaObject EmfPlusRecord EmfPlusStateRecordType EmfPlusSave

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

EmfPlusSave(EmfPlusRecord)

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

public EmfPlusSave(EmfPlusRecord source)
   {
   }

Parameters

source EmfPlusRecord

The source.

Properties

StackIndex

Gets or sets a 32-bit unsigned integer that specifies a level to associate with thegraphics state. The level value can be used by a subsequent EmfPlusRestore record (section2.3.7.4) operation to retrieve the graphics state.

public int StackIndex
   {
      get;
      set;
   }

Property Value

int

 English