這個C# PowerPoint程式庫優先考慮準確性、易用性和速度。
IronPPT是一個C# PPTX程式庫,用於在.NET中編輯PowerPoint演示文稿。其使用者友好的API允許開發者在幾分鐘內將PowerPoint處理功能新增到.NET專案中。
30DAYFREE
using IronPPT;
using IronPPT.Models;
// Create new PowerPoint presentation
var document = new PresentationDocument();
// Add empty slide
document.AddSlide();
// Add slide object
Slide slide = new Slide();
slide.AddText("Hello!");
document.AddSlide(slide);
// Export PowerPoint presentation
document.Save("output.pptx");
Install-Package IronPPT
專為在.NET 8、7、6、Core、Standard或Framework上運行的C#、F#和VB.NET設計
IronPPT是一個C# PPTX程式庫,用於在.NET中編輯PowerPoint演示文稿。其使用者友好的API允許開發者在幾分鐘內將PowerPoint處理功能新增到.NET專案中。
您的試用金鑰應該已在電子郵件中。
如果沒有,請聯繫
support@ironsoftware.com
在C#中建立、編輯和樣式化.pptx演示文稿。運行於Windows、Linux、macOS、移動和雲端。無需Office Interop。
new PresentationDocument(), document.AddSlide(), slide.AddText().