Class ResourceSavingArgs

Class ResourceSavingArgs

Namespace: Aspose.Note.Saving.Html
Assembly: Aspose.Note.dll (25.6.0)

Provides data for ResourceSaving event.

public class ResourceSavingArgs
{
    public SaveFormat Format { get; set; }
    public string OutputFilePath { get; set; }
}

Inheritance

object ResourceSavingArgs

Derived

CssSavingArgs , FontSavingArgs , ImageSavingArgs , PageSavingArgs

Inherited Members

object.GetType() , object.MemberwiseClone() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()

Properties

Document

Gets the saving document.

public Document Document
   {
      get { return _document; }
   }
In this case, I've made the following changes to align with C# conventions and improve readability:

Property Value

Document

FileName

Gets the file name.

public string FileName
   {
      get
      {
         return _fileName;
      }
   }

Property Value

string

KeepStreamOpen

Gets or sets a value indicating whether keep stream open.

public bool KeepStreamOpen
    {
        get;
        private set;
    }

Property Value

bool

Stream

Gets or sets the stream used to store the resource.

public Stream Stream
   {
      get => this.Stream;
      set => this.Stream = value;
   }

Property Value

Stream

Uri

Gets or sets the uri to access stored resource.

public string Uri
{
    get;
    set;
}

Property Value

string

 English