Set pdf to xlsx convert options.If not set ,automatic judgment of layout mode It is deprecated,please use the method setPdfToXlsxOptions(XlsxOptions options),the parameter is:the implementation class the xlsxOptions class The implementation class:XlsxLineLayoutOptions or XlsxTextLayoutOptions

Namespace: Spire.Pdf
Assembly: Spire.Pdf (in Spire.Pdf.dll) Version: 7.9.2.0 (7.9.2.1020)

Syntax

            
 C#  Visual Basic  Visual C++  F# 
[ObsoleteAttribute("This method may be removed in the future,please use the XlsxOptions class for configuration")]
public void SetPdfToXlsxOptions(
	PdfToXlsxLayout layout
)
<ObsoleteAttribute("This method may be removed in the future,please use the XlsxOptions class for configuration")> 
Public Sub SetPdfToXlsxOptions ( 
	layout As PdfToXlsxLayout
)
public:
[ObsoleteAttribute(L"This method may be removed in the future,please use the XlsxOptions class for configuration")]
void SetPdfToXlsxOptions(
	PdfToXlsxLayout layout
)
[<ObsoleteAttribute("This method may be removed in the future,please use the XlsxOptions class for configuration")>]
member SetPdfToXlsxOptions : 
        layout : PdfToXlsxLayout -> unit 

Parameters

layout
PdfToXlsxLayout
If the parameter is Line, the content is laid out by Line position.If the parameter is Text, the content is laid out by the relative position of the Text.

See Also