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
/// Controls how HTML content is rendered. Default: AbsolutePositioning
43
+
/// </summary>
44
+
/// <value>Controls how HTML content is rendered. Default: AbsolutePositioning</value>
45
+
[JsonConverter(typeof(StringEnumConverter))]
46
+
publicenumRenderingModeEnum
47
+
{
48
+
/// <summary>
49
+
/// Enum Flow for "Flow"
50
+
/// </summary>
51
+
Flow,
52
+
53
+
/// <summary>
54
+
/// Enum AbsolutePositioning for "AbsolutePositioning"
55
+
/// </summary>
56
+
AbsolutePositioning
57
+
}
58
+
59
+
/// <summary>
60
+
/// Controls how HTML content is rendered. Default: AbsolutePositioning
61
+
/// </summary>
62
+
publicRenderingModeEnum?RenderingMode{get;set;}
63
+
41
64
/// <summary>
42
65
/// Enable or disable generation of page numbering in converted document. Default: false
43
66
/// </summary>
44
67
publicbool?PageNumbering{get;set;}
45
68
69
+
/// <summary>
70
+
/// 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
71
+
/// </summary>
72
+
publicstringEncoding{get;set;}
73
+
74
+
/// <summary>
75
+
/// Use pdf for the conversion. Default: false
76
+
/// </summary>
77
+
publicbool?UsePdf{get;set;}
78
+
46
79
/// <summary>
47
80
/// Get the string presentation of the object
48
81
/// </summary>
@@ -52,6 +85,9 @@ public override string ToString()
0 commit comments