[點晴永久免費OA]C#控制WebBrowser的頁眉頁腳打印背景圖片上下左右邊距縱向橫向等
當(dāng)前位置:點晴教程→點晴OA辦公管理信息系統(tǒng)
→『 經(jīng)驗分享&問題答疑 』
public void Print()
{ string keyName = @"Software\Microsoft\Internet Explorer\PageSetup\"; using (RegistryKey key = Registry.CurrentUser.OpenSubKey(keyName, true)) { if (key != null) { key.SetValue("footer", ""); //設(shè)置頁腳為空 key.SetValue("header", ""); //設(shè)置頁眉為空 key.SetValue("Print_Background", true); //設(shè)置打印背景顏色 key.SetValue("margin_bottom", 0); //設(shè)置下頁邊距為0 key.SetValue("margin_left", 0); //設(shè)置左頁邊距為0 key.SetValue("margin_right", 0); //設(shè)置右頁邊距為0 key.SetValue("margin_top", 0); //設(shè)置上頁邊距為0 key.SetValue("Shrink_To_Fit", "yes"); //設(shè)置適合頁面 this.webBrowser1.Print(); //打印 } } } 該文章在 2022/12/22 15:57:54 編輯過 |
關(guān)鍵字查詢
相關(guān)文章
正在查詢... |