[点晴永久免费OA]C#控制WebBrowser的页眉页脚打印背景图片上下左右边距纵向横向等
当前位置:点晴教程→点晴OA办公管理信息系统
→『 经验分享&问题答疑 』
public void Print()
{ string keyName = @"Software\Microsoft\Internet Explorer\PageSetup\"; using (RegistryKey key = Registry.CurrentUser.OpenSubKey(keyName, true)) { if (key != null) { key.SetValue("footer", ""); //设置页脚为空 key.SetValue("header", ""); //设置页眉为空 key.SetValue("Print_Background", true); //设置打印背景颜色 key.SetValue("margin_bottom", 0); //设置下页边距为0 key.SetValue("margin_left", 0); //设置左页边距为0 key.SetValue("margin_right", 0); //设置右页边距为0 key.SetValue("margin_top", 0); //设置上页边距为0 key.SetValue("Shrink_To_Fit", "yes"); //设置适合页面 this.webBrowser1.Print(); //打印 } } } 该文章在 2022/12/22 15:57:54 编辑过 |
关键字查询
相关文章
正在查询... |