Excel to HTML Utilizzare l Opzione PresentationPreference per una Migliore Layout

Contents
[ ]

Si prega di vedere il codice di esempio di seguito che dimostra come renderizzare un file HTML da un report Excel con preferenza di presentazione attiva.

// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET
// The path to the documents directory.
string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
// Instantiate the Workbook
// Load an Excel file
Workbook workbook = new Workbook(dataDir+ "sample.xlsx");
// Create HtmlSaveOptions object
HtmlSaveOptions options = new HtmlSaveOptions();
// Set the Presenation preference option
options.PresentationPreference = true;
// Save the Excel file to HTML with specified option
workbook.Save(dataDir+ "outPresentationlayout1.out.html", options);