パブリック API Aspose.Cells 8.0.2 の変更点

Shape クラスに TextDirection プロパティを追加

Shape クラスには、Shape オブジェクトのテキスト フローの方向を取得または設定するために使用できる TextDirection プロパティが公開されています。以下に示すように、TextDirection プロパティを使用して、スプレッドシート内のコメントの目的のテキスト方向を設定することもできます。

Java

 //Instantiate a new Workbook

Workbook book = new Workbook();

//Get the first worksheet

Worksheet sheet = book.getWorksheets().get(0);

//Adding a comment to "F5" cell

int commentIndex = sheet.getComments().add("F5");

Comment comment = sheet.getComments().get(commentIndex);

//Set its vertical alignment setting            

comment.getCommentShape().setTextVerticalAlignment(TextAlignmentType.CENTER);

//Set its horizontal alignment setting

comment.getCommentShape().setTextHorizontalAlignment(TextAlignmentType.RIGHT);

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

comment.getCommentShape().setTextDirection(TextDirectionType.RIGHT_TO_LEFT);

//Set the Comment note

comment.setNote("This is my Comment Text. This is test");

//Save the Excel file

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

ConvertFormulasData プロパティを HTMLLoadOptions クラスに追加

ConvertFormulasData プロパティが HTMLLoadOptions クラスに追加され、開発者が HTML ファイルから Excel の式を簡単にロードできるようになりました。ブール値の ConvertFormulasData プロパティは、文字列値が文字 ‘=’ で始まる場合に、文字列を数式に変換するかどうかを示します。

Java

 //Create an instance of HTMLLoadOptions

HTMLLoadOptions loadOptions = new HTMLLoadOptions();

//Set ConvertFormulasData to true

loadOptions.setConvertFormulasData(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);

ImageOptions プロパティを HtmlSaveOptions クラスに追加

ImageOptions プロパティが HtmlSaveOptions クラスに追加されました。 ImageOptions プロパティを公開することで、開発者はスプレッドシートのエクスポート中に HTML に埋め込まれた画像の設定を行うことができます。

廃止された HtmlSaveOptions.ExportChartImageFormat プロパティ

HtmlSaveOptions.ExportChartImageFormat は、Aspose.Cells for .NET 8.0.2 から廃止されました。スプレッドシートを HTML 形式にエクスポートする際は、画像形式設定の代わりに HtmlSaveOptions.ImageOptions を使用することをお勧めします。