PdfConvertOptions
SetPdfToHtmlOptions Method (Boolean, Boolean, Int32)
|
Set pdf to html convert options.
Namespace:
Spire.Pdf
Assembly:
Spire.Pdf (in Spire.Pdf.dll) Version: 11.3.7.0 (11.3.7.1046)
Syntax
public void SetPdfToHtmlOptions(
bool useEmbeddedSvg,
bool useEmbeddedImg,
int maxPageOneFile
)
Public Sub SetPdfToHtmlOptions (
useEmbeddedSvg As Boolean,
useEmbeddedImg As Boolean,
maxPageOneFile As Integer
)
public:
void SetPdfToHtmlOptions(
bool useEmbeddedSvg,
bool useEmbeddedImg,
int maxPageOneFile
)
member SetPdfToHtmlOptions :
useEmbeddedSvg : bool *
useEmbeddedImg : bool *
maxPageOneFile : int -> unit
Parameters
-
useEmbeddedSvg
-
Type:
System
Boolean
Indicates whether to use the embedded svg in html file.
-
useEmbeddedImg
-
Type:
System
Boolean
Indicates whether to embed image data in html file, works only when useEmbeddedSvg is set to false.
-
maxPageOneFile
-
Type:
System
Int32
Indicates the count of page contents in one html file, works only when useEmbeddedSvg is set to false.
See Also