Initializes a new instance of the class.

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

Syntax

            
 C#  Visual Basic  Visual C++  F# 
public XlsxLineLayoutOptions(
	bool convertToMultipleSheet,
	bool showRotatedText,
	bool splitCell
)
Public Sub New ( 
	convertToMultipleSheet As Boolean,
	showRotatedText As Boolean,
	splitCell As Boolean
)
public:
XlsxLineLayoutOptions(
	bool convertToMultipleSheet, 
	bool showRotatedText, 
	bool splitCell
)
new : 
        convertToMultipleSheet : bool * 
        showRotatedText : bool * 
        splitCell : bool -> XlsxLineLayoutOptions

Parameters

convertToMultipleSheet
Boolean
the pdf document conver to multiple sheet,the default is true
showRotatedText
Boolean
whether show rotated text,the default is true
splitCell
Boolean
In PDF document table,there are multiple lines of text in the cell.Whether it is split into multiple lines.the default is true

See Also