[點(diǎn)晴永久免費(fèi)OA]C#控制WebBrowser的頁眉頁腳打印背景圖片上下左右邊距縱向橫向等
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)文章
正在查詢... |