Skip to main content

XlsExportOptions(TextExportMode, Boolean, Boolean) Constructor

Initializes a new instance of the XlsExportOptions class with the specified text export mode, grid lines and hyperlinks settings.

Namespace: DevExpress.XtraPrinting

Assembly: DevExpress.Printing.v23.2.Core.dll

NuGet Package: DevExpress.Printing.Core

Declaration

public XlsExportOptions(
    TextExportMode textExportMode,
    bool showGridLines,
    bool exportHyperlinks
)

Parameters

Name Type Description
textExportMode TextExportMode

A TextExportMode object, which specifies a format in which data values should be saved.

showGridLines Boolean

true to show the grid lines in the resulting XLS file; otherwise, false. This value is assigned to the XlExportOptionsBase.ShowGridLines property.

exportHyperlinks Boolean

true to export hyperlinks; otherwise, false. This value is assigned to the XlExportOptionsBase.ExportHyperlinks property.

See Also