jsPrintSetup使用說明!

2021-06-18 04:04:15 字數 1392 閱讀 3173

這個外掛程式

客戶端指令碼印表機設定。

推廣創造了全域性物件稱為「jsprintsetup』,它實現的方法來獲取/設定列印頁面設定選項。這是有用的開發,要控制頁面設定選項的**。

一些主要特點是:

獲取/設定列印設定-邊緣,定位,縮放,頁首和頁尾

-獲取/設定全域性列印設定和選定的印表機

-與安裝的印表機

儲存列印設定使用者偏好

列印當前setttings不需要使用者pereferences儲蓄所需的print() ' '視窗。

列印所需的視窗或框架

無人不列印對話方塊

詳細參考擴充套件可以被發現在專案主頁

示例**演示使用的jsprintsetup設定列印邊距和呼叫無人值守列印方法(不列印對話方塊)。

// set portrait orientation/ /設定縱向方向

jsprintsetup.setoption('orientation', jsprintsetup.kportraitorientation);

// set top margins in millimeters/ /設定的頂緣公釐

jsprintsetup.setoption('margintop', 15);

jsprintsetup.setoption('marginbottom', 15);

jsprintsetup.setoption('marginleft', 20);

jsprintsetup.setoption(' marginright', 10);

// set page header/ /設定頁面標題

jsprintsetup.setoption('headerstrleft', 'my custom header');

jsprintsetup.setoption('headerstrcenter', '');

jsprintsetup.setoption('headerstrright', '&pt');

// set empty page footer/ /設定空頁頁尾

jsprintsetup.setoption('footerstrleft', '');

jsprintsetup.setoption('footerstrcenter', '');

jsprintsetup.setoption('footerstrright', '');

// suppress print dialog/ /抑制列印對話方塊

jsprintsetup.setsilentprint(true);

// do print/列印

jsprintsetup.print();

// restore print dialog/ /恢復列印對話方塊

jsprintsetup.setsilentprint(false);

python Flask JQuery使用說明

0.前言 這個例子將執行在樹莓派中,請注意windows平台和linux平台也可以執行該示例,python具有良好的跨平台效能。倉庫 倉庫位於 bitbucket 相關博文 python 擴充套件庫安裝 使用第三方映象源 python flask 學前班 前端學習 html4和html5設定頁面語言...

Fastjson API Stream使用說明

fastjson當需要處理超大json文字時,需要stream api,在fastjson 1.1.32版本中開始提供stream api。如果你的json格式是乙個巨大的json陣列,有很多元素,則先呼叫startarray,然後挨個寫入物件,然後呼叫endarray。jsonwriter wri...

python Flask JQuery使用說明

0.前言 普通情況下,位於static資料夾下 見圖1 資料夾結構 本文結合乙個很easy的加法樣例試圖說明flask框架中jquery和ajax的使用方法。這個樣例將執行在樹莓派中,請注意windows平台和linux平台也能夠執行該演示樣例,python具有良好的跨平台效能。倉庫 倉庫位於 bi...