zoukankan      html  css  js  c++  java
  • K3cloud 打印例子



    1、选择打印机名称:
    private selectPrinterNameButtonClick(e){
            //参数 0:只返回选中的打印机名称,1:同时返回当前可用打印机列表,100:只返回当前可用的打印机列表
            this.View.AddAction("SelectPrinterExt",0)
    }


    protected override CustomEvents(e){
            //参数0 e.EventArgs:{"Data":"{"Selected":true,"PrinterName":"Doro PDF Writer" }","RetType":0}
            //参数1 e.EventArgs:{"Data":"{"Selected":true,"PrinterName":"Doro PDF Writer" ,"AllPrinterNames":["Microsoft XPS Document Writer","Doro PDF Writer"]}","RetType":1}
            //参数100 e.EventArgs:{"Data":"{"Selected":true ,"AllPrinterNames":["Microsoft XPS Document Writer","Doro PDF Writer"]}","RetType":100}
            var printNameObject =  e.EventArgs;
    }


    2、获取名称后调用打印进行静默打印;

    /// <summary>
    /// 打印
    /// </summary>
    /// <param name="printJobId">打印任务ID</param>
    /// <param name="printType">打印类型</param>
    /// <param name="printer">打印机ID</param>
    public void NoteTemplateOperation(string printJobId, string printType, object printer = null, string printBarName = null)
    {
        JSONObject jsonObj = new JSONObject();
        jsonObj.Put("pageID", this.View.PageId);
        jsonObj.Put("printJobId", printJobId);
        jsonObj.Put("action", printType);

        string action = string.Empty;
        if (printType.EqualsIgnoreCase("preview") || printType.EqualsIgnoreCase("PrintMergePreview"))
        {
            action = JSAction.printPreview;
            jsonObj.Put("printBarName", printBarName);
        }
        else if (printType.EqualsIgnoreCase("print") || printType.EqualsIgnoreCase("PrintMerge"))
        {
            action = JSAction.print;
            jsonObj.Put("printerAddress", printer.IsNullOrEmpty() == true ? string.Empty : Convert.ToString(printer));
        }

        this.View.AddAction(action, jsonObj);
    }
  • 相关阅读:
    POJ3268-Silver Cow Party-(Dijstra)
    POJ3259-Wormholes-( spfa || Bellman_Ford )
    POJ2139-Six Degrees of Cowvin Bacon-(Floyd_Warshall)
    hdu3974-Assign the task-(dfs+线段树)
    ZOJ3261-Connections in Galaxy War-(逆向并查集+离线处理)
    hdu1540-Tunnel Warfare-(线段树+二分)
    hdu4027-Can you answer these queries? -(线段树+剪枝)
    POJ3616-Milking Time-(dp)
    Visual Studio Code
    Visual Studio Code
  • 原文地址:https://www.cnblogs.com/liangyuwen/p/13197173.html
Copyright © 2011-2022 走看看