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: english/java/com.groupdocs.viewer.options/presentationoptions/_index.md
+25Lines changed: 25 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,6 +29,8 @@ For details, see the [documentation][].
29
29
| --- | --- |
30
30
|[isRenderToPureHtml()](#isRenderToPureHtml--)| Enables a new HTML rendering mode for Presentation documents. |
31
31
|[setRenderToPureHtml(boolean renderToPureHtml)](#setRenderToPureHtml-boolean-)| Enables a new HTML rendering mode for Presentation documents. |
32
+
|[isRenderHeaderFooterPlaceholders()](#isRenderHeaderFooterPlaceholders--)| Enables rendering placeholders in the header and footer of a slide. |
33
+
|[setRenderHeaderFooterPlaceholders(boolean renderHeaderFooterPlaceholders)](#setRenderHeaderFooterPlaceholders-boolean-)| Enables rendering placeholders in the header and footer of a slide. |
32
34
|[getResolution()](#getResolution--)| Resolution for images inside presentation (for to HTML/PDF rendering only). |
33
35
|[setResolution(Resolution resolution)](#setResolution-com.groupdocs.viewer.options.Resolution-)| Resolution for images inside presentation (for to HTML/PDF rendering only). |
Enables rendering placeholders in the header and footer of a slide. Disabled by default (false). This option applies for all 4 rendering modes of presentations: HTML, PDF, PNG, and JPEG. Is not applicable when rendering presentation to pure HTML/CSS markup using .
public void setRenderHeaderFooterPlaceholders(boolean renderHeaderFooterPlaceholders)
82
+
```
83
+
84
+
85
+
Enables rendering placeholders in the header and footer of a slide. Disabled by default (false). This option applies for all 4 rendering modes of presentations: HTML, PDF, PNG, and JPEG. Is not applicable when rendering presentation to pure HTML/CSS markup using .
Copy file name to clipboardExpand all lines: english/java/com.groupdocs.viewer.options/spreadsheetoptions/_index.md
+80Lines changed: 80 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -75,6 +75,12 @@ Example usage:
75
75
|[setTopMargin(double topMargin)](#setTopMargin-double-)| To set top margin of the worksheet when converting to pdf if less than 0 then default convert value is used If the parameter is less than 0, then the default value is used. |
76
76
|[getBottomMargin()](#getBottomMargin--)| To set bottom margin of the worksheet when converting to pdf if less than 0 then default convert value is used If the parameter is less than 0, then the default value is used. |
77
77
|[setBottomMargin(double bottomMargin)](#setBottomMargin-double-)| To set bottom margin of the worksheet when converting to pdf if less than 0 then default convert value is used If the parameter is less than 0, then the default value is used. |
78
+
|[getHorizontalResolution()](#getHorizontalResolution--)| Gets or sets the horizontal resolution for generated images in dots per inch. |
79
+
|[setHorizontalResolution(int horizontalResolution)](#setHorizontalResolution-int-)| Sets the horizontal resolution for generated images in dots per inch. |
80
+
|[getVerticalResolution()](#getVerticalResolution--)| Gets or sets the vertical resolution for generated images in dots per inch. |
81
+
|[setVerticalResolution(int verticalResolution)](#setVerticalResolution-int-)| Sets the vertical resolution for generated images in dots per inch. |
|[forRenderingPrintAreaAndPageBreaks()](#forRenderingPrintAreaAndPageBreaks--)| Initializes a new instance of SpreadsheetOptions for rendering print areas and page breaks. |
79
85
|[forRenderingByPageBreaks()](#forRenderingByPageBreaks--)| Initializes a new instance of the SpreadsheetOptions class for rendering print areas only. |
Gets or sets the horizontal resolution for generated images in dots per inch. This option is used when rendering spreadsheets to PNG or JPEG formats only.
664
+
665
+
Default value is 96 DPI. Min possible value - 72 DPI, max possible value - 600 DPI. If the user-specified value is out of these limits, the min or max possible value will be applied.
public void setHorizontalResolution(int horizontalResolution)
672
+
```
673
+
674
+
675
+
Sets the horizontal resolution for generated images in dots per inch. This option is used when rendering spreadsheets to PNG or JPEG formats only.
676
+
677
+
Default value is 96 DPI. Min possible value - 72 DPI, max possible value - 600 DPI. If the user-specified value is out of these limits, the min or max possible value will be applied.
678
+
679
+
**Parameters:**
680
+
| Parameter | Type | Description |
681
+
| --- | --- | --- |
682
+
| horizontalResolution | int | the horizontal resolution in DPI. |
Gets or sets the vertical resolution for generated images in dots per inch. This option is used when rendering spreadsheets to PNG or JPEG formats only.
691
+
692
+
Default value is 96 DPI. Min possible value - 72 DPI, max possible value - 600 DPI. If the user-specified value is out of these limits, the min or max possible value will be applied.
public void setVerticalResolution(int verticalResolution)
699
+
```
700
+
701
+
702
+
Sets the vertical resolution for generated images in dots per inch. This option is used when rendering spreadsheets to PNG or JPEG formats only.
703
+
704
+
Default value is 96 DPI. Min possible value - 72 DPI, max possible value - 600 DPI. If the user-specified value is out of these limits, the min or max possible value will be applied.
705
+
706
+
**Parameters:**
707
+
| Parameter | Type | Description |
708
+
| --- | --- | --- |
709
+
| verticalResolution | int | the vertical resolution in DPI. |
0 commit comments