You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: jspdf.js
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -1012,7 +1012,7 @@ var jsPDF = (function(global) {
1012
1012
* @param {Number} x Coordinate (in units declared at inception of PDF document) against left edge of the page
1013
1013
* @param {Number} y Coordinate (in units declared at inception of PDF document) against upper edge of the page
1014
1014
* @param {Number} scale (Defaults to [1.0,1.0]) x,y Scaling factor for all vectors. Elements can be any floating number Sub-one makes drawing smaller. Over-one grows the drawing. Negative flips the direction.
1015
-
* @param {String} style One of 'S' (the default), 'F', 'FD', 'DF' or null. 'S' draws just the curve. 'F' fills the region defined by the curves. 'DF' or 'FD' draws the curves and fills the region. A null value postpones setting the style so that a shape may be composed using multiple method calls. The last drawing method call used to define the shape should not have a null style argument.
1015
+
* @param {String} style A string specifying the painting style or null. Valid styles include: 'S' [default] - stroke, 'F' - fill, and 'DF' (or 'FD') - fill then stroke. A null value postpones setting the style so that a shape may be composed using multiple method calls. The last drawing method call used to define the shape should not have a null style argument.
1016
1016
* @param {Boolean} closed If true, the path is closed with a straight line from the end of the last curve to the starting point.
1017
1017
* @function
1018
1018
* @returns {jsPDF}
@@ -1091,7 +1091,7 @@ var jsPDF = (function(global) {
1091
1091
* @param {Number} y Coordinate (in units declared at inception of PDF document) against upper edge of the page
1092
1092
* @param {Number} w Width (in units declared at inception of PDF document)
1093
1093
* @param {Number} h Height (in units declared at inception of PDF document)
1094
-
* @param {String} style (Defaults to active fill/stroke style) A string signalling if stroke, fillor both are to be applied.
1094
+
* @param {String} style A string specifying the painting style or null. Valid styles include: 'S' [default] - stroke, 'F' - fill, and 'DF' (or 'FD') - fill then stroke. A null value postpones setting the style so that a shape may be composed using multiple method calls. The last drawing method call used to define the shape should not have a null style argument.
1095
1095
* @function
1096
1096
* @returns {jsPDF}
1097
1097
* @methodOf jsPDF#
@@ -1123,7 +1123,7 @@ var jsPDF = (function(global) {
1123
1123
* @param {Number} y2 Coordinate (in units declared at inception of PDF document) against upper edge of the page
1124
1124
* @param {Number} x3 Coordinate (in units declared at inception of PDF document) against left edge of the page
1125
1125
* @param {Number} y3 Coordinate (in units declared at inception of PDF document) against upper edge of the page
1126
-
* @param {String} style (Defaults to active fill/stroke style) A string signalling if stroke, fillor both are to be applied.
1126
+
* @param {String} style A string specifying the painting style or null. Valid styles include: 'S' [default] - stroke, 'F' - fill, and 'DF' (or 'FD') - fill then stroke. A null value postpones setting the style so that a shape may be composed using multiple method calls. The last drawing method call used to define the shape should not have a null style argument.
1127
1127
* @function
1128
1128
* @returns {jsPDF}
1129
1129
* @methodOf jsPDF#
@@ -1153,7 +1153,7 @@ var jsPDF = (function(global) {
1153
1153
* @param {Number} h Height (in units declared at inception of PDF document)
1154
1154
* @param {Number} rx Radius along x axis (in units declared at inception of PDF document)
1155
1155
* @param {Number} rx Radius along y axis (in units declared at inception of PDF document)
1156
-
* @param {String} style (Defaults to active fill/stroke style) A string signalling if stroke, fillor both are to be applied.
1156
+
* @param {String} style A string specifying the painting style or null. Valid styles include: 'S' [default] - stroke, 'F' - fill, and 'DF' (or 'FD') - fill then stroke. A null value postpones setting the style so that a shape may be composed using multiple method calls. The last drawing method call used to define the shape should not have a null style argument.
1157
1157
* @function
1158
1158
* @returns {jsPDF}
1159
1159
* @methodOf jsPDF#
@@ -1186,7 +1186,7 @@ var jsPDF = (function(global) {
1186
1186
* @param {Number} y Coordinate (in units declared at inception of PDF document) against upper edge of the page
1187
1187
* @param {Number} rx Radius along x axis (in units declared at inception of PDF document)
1188
1188
* @param {Number} rx Radius along y axis (in units declared at inception of PDF document)
1189
-
* @param {String} style (Defaults to active fill/stroke style) A string signalling if stroke, fillor both are to be applied.
1189
+
* @param {String} style A string specifying the painting style or null. Valid styles include: 'S' [default] - stroke, 'F' - fill, and 'DF' (or 'FD') - fill then stroke. A null value postpones setting the style so that a shape may be composed using multiple method calls. The last drawing method call used to define the shape should not have a null style argument.
1190
1190
* @function
1191
1191
* @returns {jsPDF}
1192
1192
* @methodOf jsPDF#
@@ -1249,7 +1249,7 @@ var jsPDF = (function(global) {
1249
1249
* @param {Number} x Coordinate (in units declared at inception of PDF document) against left edge of the page
1250
1250
* @param {Number} y Coordinate (in units declared at inception of PDF document) against upper edge of the page
1251
1251
* @param {Number} r Radius (in units declared at inception of PDF document)
1252
-
* @param {String} style (Defaults to active fill/stroke style) A string signalling if stroke, fillor both are to be applied.
1252
+
* @param {String} style A string specifying the painting style or null. Valid styles include: 'S' [default] - stroke, 'F' - fill, and 'DF' (or 'FD') - fill then stroke. A null value postpones setting the style so that a shape may be composed using multiple method calls. The last drawing method call used to define the shape should not have a null style argument.
0 commit comments