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: src/model.ts
+40Lines changed: 40 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -3012,6 +3012,21 @@ export class WebLoadOptions extends LoadOptions {
3012
3012
name: "pageNumbering",
3013
3013
baseName: "pageNumbering",
3014
3014
type: "boolean",
3015
+
},
3016
+
{
3017
+
name: "encoding",
3018
+
baseName: "encoding",
3019
+
type: "string",
3020
+
},
3021
+
{
3022
+
name: "usePdf",
3023
+
baseName: "usePdf",
3024
+
type: "boolean",
3025
+
},
3026
+
{
3027
+
name: "renderingMode",
3028
+
baseName: "renderingMode",
3029
+
type: "WebLoadOptions.RenderingModeEnum",
3015
3030
}];
3016
3031
3017
3032
/**
@@ -3026,12 +3041,36 @@ export class WebLoadOptions extends LoadOptions {
3026
3041
*/
3027
3042
publicpageNumbering: boolean;
3028
3043
3044
+
/**
3045
+
* Get or sets the encoding to be used when loading the web document. If the property is null the encoding will be determined from document character set attribute
3046
+
*/
3047
+
publicencoding: string;
3048
+
3049
+
/**
3050
+
* Use pdf for the conversion. Default: false
3051
+
*/
3052
+
publicusePdf: boolean;
3053
+
3054
+
/**
3055
+
* Controls how HTML content is rendered. Default: AbsolutePositioning
0 commit comments