我正在使用Geckofx-22而我无法在没有页眉和页脚的情况下进行打印

时间:2017-06-10 05:31:38

标签: javascript c# .net

About:config - always_print_silent in geckofx

像这样在c#中需要禁用页眉和页脚,打印时 例如:删除网址,日期,页面编号,日期

2 个答案:

答案 0 :(得分:0)

这将解决

在html标签中使用" moznomarginboxes mozdisallowselectionprint"

<强>

答案 1 :(得分:0)

            GeckoPreferences.User["print.print_headercenter"] = "";
            GeckoPreferences.User["print.print_headerleft"] = "";
            GeckoPreferences.User["print.print_headerright"] = "";
            GeckoPreferences.User["print.print_edge_top"] = 0;
            GeckoPreferences.User["print.print_edge_bottom"] = 0;
            GeckoPreferences.User["print.print_footerright"] = "";
            GeckoPreferences.User["print.print_footerleft"] = "";
            GeckoPreferences.User["print.print_footercenter"] = "";
            GeckoPreferences.User["print.print_unwriteable_margin_bottom"] = -1;