2010-05-17 305 views

回答

2

例如,如果你想設置A4格式,你可以使用此代碼:

Document document = new Document(PageSize.A4); 
0

在C#與NPOI我用

document.PageLayout.Orientation = Orientation.Landscape; 

document.PageLayout.Orientation = Orientation.Portrait; 
相關問題