プレゼンテーションのローカリゼーション
Contents
[
Hide
]
プレゼンテーションとシェイプのテキストの言語を変更する
- Presentationクラスのインスタンスを作成します。
- インデックスを使用してスライドの参照を取得します。
- スライドにRectangle型のIAutoShapeを追加します。
- TextFrameにテキストを追加します。
- テキストに対してSetting Language Idを設定します。
- プレゼンテーションをPPTXファイルとして保存します。
上記の手順の実装は、以下の例で示されています。
Presentation pres = new Presentation("test.pptx");
try {
IAutoShape shape = pres.getSlides().get_Item(0).getShapes().addAutoShape(ShapeType.Rectangle, 50, 50, 200, 50);
shape.addTextFrame("スペルチェック言語を適用するテキスト");
shape.getTextFrame().getParagraphs().get_Item(0).getPortions().get_Item(0).getPortionFormat().setLanguageId("en-EN");
pres.save("output.pptx", SaveFormat.Pptx);
} finally {
if (pres != null) pres.dispose();
}