其他分享
首页 > 其他分享> > BarTender最基本的打印

BarTender最基本的打印

作者:互联网

BarTender.Application btApp = new BarTender.Application();


BarTender.Format btFormat = new BarTender.Format();

btFormat = btApp.Formats.Open(@"路径", false, "");


btFormat.PrintSetup.IdenticalCopiesOfLabel = 1; //设置同序列打印的份数


btFormat.PrintSetup.NumberSerializedLabels = 1; //设置需要打印的序列数

btFormat.SetNamedSubStringValue(“Bartender模板里的模板数据源”, “需要传的值”); //向bartender模板传递变量 skey是BarTender模板中要接受的变量名 BarTemplateItemValues[skey]是要传的值

btFormat.PrintOut(true, false); //第二个false设置打印时是否跳出打印属性

btFormat.Close(BarTender.BtSaveOptions.btSaveChanges); //退出时是否保存标签

标签:基本,false,btApp,打印,BarTender,模板,btFormat
来源: https://www.cnblogs.com/likeniubi/p/14133048.html