Class PdfImportOptions
Class PdfImportOptions
Namespace: Aspose.Note.Importing
Assembly: Aspose.Note.dll (25.6.0)
Allows to specify options when importing content from PDF document.
public class PdfImportOptions
{
public virtual bool UseTextAsStampData { get; set; } = false;
public virtual bool ImportBookmarks { get; set; } = true;
public virtual int PageNumberStart { get; set; } = 1;
public virtual string PageNumberPrefix { get; set; } = string.Empty;
public virtual int ImportPagesCount { get; set; } = int.MaxValue;
public virtual bool ImportDocProperties { get; set; } = true;
public virtual bool ImportHyperlinks { get; set; } = true;
public virtual bool ImportTextAsWordArt { get; set; } = false;
}
Inheritance
Inherited Members
object.GetType() , object.MemberwiseClone() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()
Constructors
PdfImportOptions()
public PdfImportOptions()
{
}
Properties
PageCount
Gets or sets the number of pages to save. By default is System.Int32.MaxValuewhich means all pages of the document will be rendered.
public int PageCount
{
get;
private set;
}
Property Value
PageIndex
Gets or sets the index of the first page to save. By default is 0.
public int PageIndex
{
get;
private set;
}
Property Value
Password
Gets or sets a password to decrypt the document content.
public string Password
{
get;
private set;
}