如何在jspdf autoTable中的beforePageContent中使用lineBreak

时间:2016-08-09 08:24:47

标签: jspdf jspdf-autotable

我在我的程序中使用overFlow : linebreak。这很好,这是我的代码,



styles: {
                		  fillStyle: 'DF',
                	      overflow: 'linebreak',
                	      columnWidth: 110,
                	      lineWidth: 2,
                	      lineColor: [85, 51, 27]
                           
                	    }




但这并不反映在beforePageContent内,这是代码,



beforePageContent: function(data) {
                	    	doc.setFontSize(12);
                	    	doc.setFont("courier");
                	    	doc.text("Process Name :",20 ,15);
                	    	doc.setFontStyle('bold');
                	    	//doc.overflow('linebreak');
                	        doc.setFontStyle('normal');
                       doc.text("Description :"+sampData, 20, 30);
                	        
                	        
                	    },




那么如何在lineBreak块中使用beforePageContent

1 个答案:

答案 0 :(得分:5)

overflow: linebreak;样式仅适用于jspdf-autotable。在钩子(例如beforePageContent)中,您使用纯jspdf并且需要使用jspdf方法。有两个功能你可能会有所帮助。第一个是doc.getStringUnitWidth("hello"),第二个是doc.splitTextToSize("A longer title that might be split", 50)

示例1:

var strArr = doc.splitTextToSize("A longer title that might be split", 50)
doc.text(strArr, 50, 50);

示例2:

var str = "A longer title that /n is split";
doc.text(str, 50, 50);