Modifiche all API pubblica in Aspose.Cells 8.0.2

Aggiunta la proprietà TextDirection alla classe Shape

La classe Shape ha esposto la proprietà TextDirection che può essere utilizzata per ottenere o impostare la direzione del flusso di testo per l’oggetto Shape. La proprietà TextDirection può essere utilizzata anche per impostare la direzione del testo desiderata per i commenti in un foglio di calcolo come dimostrato di seguito.

C#

 //Instantiate a new Workbook

var book = new Workbook();

//Get the first worksheet

var sheet = book.Worksheets[0];

//Add a comment to A1 cell

var comment = sheet.Comments[sheet.Comments.Add("A1")];

//Set its vertical alignment setting            

comment.CommentShape.TextVerticalAlignment  = TextAlignmentType.Center;

//Set its horizontal alignment setting

comment.CommentShape.TextHorizontalAlignment = TextAlignmentType.Right;

//Set the Text Direction - Right-to-Left

comment.CommentShape.TextDirection = TextDirectionType.RightToLeft;

//Set the Comment note

comment.Note = "This is my Comment Text. This is test";

//Save the Excel file

book.Save(myDir + "output.xlsx");

Aggiunta la proprietà ConvertFormulasData alla classe HTMLLoadOptions

La proprietà ConvertFormulasData è stata aggiunta alla classe HTMLLoadOptions, al fine di facilitare agli sviluppatori il caricamento delle formule Excel dai file HTML. La proprietà booleana ConvertFormulasData indica se convertire o meno la stringa in una formula quando il valore della stringa inizia con il carattere ‘=’.

C#

 //Create an instance of HTMLLoadOptions

HTMLLoadOptions loadOptions = new HTMLLoadOptions();

//Set ConvertFormulasData to true

loadOptions.ConvertFormulasData = true;

//Create an instance of Workbook and load an HTML based spreadsheet 

//while passing the instance of HTMLLoadOptions

Workbook workbook = new Workbook(myDir + "spreadsheet.html", loadOptions);

Aggiunta la proprietà ImageOptions alla classe HtmlSaveOptions

La proprietà ImageOptions è stata aggiunta alla classe HtmlSaveOptions. L’esposizione della proprietà ImageOptions ha consentito agli sviluppatori di impostare le preferenze per le immagini incorporate nell’HTML durante l’esportazione dei fogli di calcolo.

Obsoleta la proprietà HtmlSaveOptions.ExportChartImageFormat

HtmlSaveOptions.ExportChartImageFormat è stato contrassegnato come obsoleto a partire dal Aspose.Cells for .NET 8.0.2. Si consiglia di utilizzare HtmlSaveOptions.ImageOptions invece per le impostazioni del formato dell’immagine durante l’esportazione di fogli di calcolo nel formato HTML.