Spire.Presentation 10.10.7 が正式にリリースされました。本バージョンでは、テンプレートを使用して PowerPoint を作成する際の保存時間を最適化しました。また、表の透過度を設定する機能が追加され、AddDigitalSignature メソッドの使用方法が調整されました。さらに、PPT から PDF への変換時に内容が正しく表示されない不具合も修正されています。詳細は以下の通りです。
このリリースで行われた変更のリストは次のとおりです
| カテゴリー | ID | 説明 |
| 仕様変更 | — | AddDigitalSignature メソッドの使用方法を調整しました。
Presentation ppt = new Presentation();
ppt.LoadFromFile("in.pptx");
//Add a digital signature,The parameters: string certificatePath, string certificatePassword, string comments, DateTime signTime
ppt.AddDigitalSignature("test.pfx", "e-iceblue", "111", DateTime.Now);
ppt.SaveToFile("result.pptx", Spire.Presentation.FileFormat.Pptx2016);
ppt.Dispose(); |
| 新機能 | SPIREPPT-3002 | 表に透過度を設定できる機能を追加しました。
table.Fill.Transparency = 0.5f; // Value range is 1-0, table default color is black // Need to set specific table color, set color code as follows: table[0, 0].FillFormat.FillType = Spire.Presentation.Drawing.FillFormatType.Solid; table[0, 0].FillFormat.SolidColor.Color = Color.Orange; |
| Bug | SPIREPPT-2887, SPIREPPT-2954, SPIREPPT-2989 | PPT から PDF への変換時に内容が正しく表示されない問題を修正しました。 |
| Bug | SPIREPPT-2997 | テンプレートを使用して PPT を作成する際の保存時間を最適化しました。 |
ここで Spire.Presentation 10.10.7をダウンロードする






