Skip to content

Commit fbf9d90

Browse files
Update file(s) "/." from "groupdocs-conversion/Groupdocs.Conversion-References"
1 parent 0095c77 commit fbf9d90

File tree

4 files changed

+256
-6
lines changed
  • content/sites/groupdocs/conversion/english/java/com.groupdocs.conversion.options.load

4 files changed

+256
-6
lines changed

content/sites/groupdocs/conversion/english/java/com.groupdocs.conversion.options.load/emailloadoptions/_index.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,8 @@ Options for loading Email documents.
5858
| [setDisplaySubject(boolean displaySubject)](#setDisplaySubject-boolean-) | Sets option to display or hide subject in the header |
5959
| [isDisplaySent()](#isDisplaySent--) | Gets option to display or hide sent date/time in the header. |
6060
| [setDisplaySent(boolean displaySent)](#setDisplaySent-boolean-) | Sets option to display or hide sent date/time in the header. |
61+
| [isSkipExternalResources()](#isSkipExternalResources--) | Skips the http resource loading if true |
62+
| [setSkipExternalResources(boolean skipExternalResources)](#setSkipExternalResources-boolean-) | |
6163
### EmailLoadOptions() {#EmailLoadOptions--}
6264
```
6365
public EmailLoadOptions()
@@ -441,3 +443,26 @@ Sets option to display or hide sent date/time in the header.
441443
| --- | --- | --- |
442444
| displaySent | boolean | |
443445

446+
### isSkipExternalResources() {#isSkipExternalResources--}
447+
```
448+
public boolean isSkipExternalResources()
449+
```
450+
451+
452+
Skips the http resource loading if true
453+
454+
**Returns:**
455+
boolean
456+
### setSkipExternalResources(boolean skipExternalResources) {#setSkipExternalResources-boolean-}
457+
```
458+
public void setSkipExternalResources(boolean skipExternalResources)
459+
```
460+
461+
462+
463+
464+
**Parameters:**
465+
| Parameter | Type | Description |
466+
| --- | --- | --- |
467+
| skipExternalResources | boolean | |
468+

content/sites/groupdocs/conversion/english/java/com.groupdocs.conversion.options.load/presentationloadoptions/_index.md

Lines changed: 77 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ url: /java/com.groupdocs.conversion.options.load/presentationloadoptions/
1010
java.lang.Object, [com.groupdocs.conversion.contracts.ValueObject](../../com.groupdocs.conversion.contracts/valueobject), [com.groupdocs.conversion.options.load.LoadOptions](../../com.groupdocs.conversion.options.load/loadoptions)
1111

1212
**All Implemented Interfaces:**
13-
java.io.Serializable, [com.groupdocs.conversion.options.load.IResourceLoadingOptions](../../com.groupdocs.conversion.options.load/iresourceloadingoptions)
13+
java.io.Serializable, [com.groupdocs.conversion.options.load.IResourceLoadingOptions](../../com.groupdocs.conversion.options.load/iresourceloadingoptions), [com.groupdocs.conversion.contracts.IDocumentsContainerLoadOptions](../../com.groupdocs.conversion.contracts/idocumentscontainerloadoptions)
1414
```
15-
public class PresentationLoadOptions extends LoadOptions implements Serializable, IResourceLoadingOptions
15+
public class PresentationLoadOptions extends LoadOptions implements Serializable, IResourceLoadingOptions, IDocumentsContainerLoadOptions
1616
```
1717

1818
Options for loading Presentation documents.
@@ -46,6 +46,12 @@ Options for loading Presentation documents.
4646
| [setNotesPosition(PresentationNotesPosition notesPosition)](#setNotesPosition-com.groupdocs.conversion.contracts.PresentationNotesPosition-) | Represents the way notes are printed with the slide. |
4747
| [getCommentsPosition()](#getCommentsPosition--) | |
4848
| [setCommentsPosition(PresentationCommentsPosition commentsPosition)](#setCommentsPosition-com.groupdocs.conversion.contracts.PresentationCommentsPosition-) | |
49+
| [isConvertOwner()](#isConvertOwner--) | |
50+
| [setConvertOwner(boolean convertOwner)](#setConvertOwner-boolean-) | |
51+
| [isConvertOwned()](#isConvertOwned--) | |
52+
| [setConvertOwned(boolean convertOwned)](#setConvertOwned-boolean-) | |
53+
| [getDepth()](#getDepth--) | |
54+
| [setDepth(int depth)](#setDepth-int-) | |
4955
### PresentationLoadOptions() {#PresentationLoadOptions--}
5056
```
5157
public PresentationLoadOptions()
@@ -294,3 +300,72 @@ public void setCommentsPosition(PresentationCommentsPosition commentsPosition)
294300
| --- | --- | --- |
295301
| commentsPosition | [PresentationCommentsPosition](../../com.groupdocs.conversion.contracts/presentationcommentsposition) | |
296302

303+
### isConvertOwner() {#isConvertOwner--}
304+
```
305+
public boolean isConvertOwner()
306+
```
307+
308+
309+
Gets option to control whether the documents container itself must be converted
310+
311+
**Returns:**
312+
boolean
313+
### setConvertOwner(boolean convertOwner) {#setConvertOwner-boolean-}
314+
```
315+
public void setConvertOwner(boolean convertOwner)
316+
```
317+
318+
319+
320+
321+
**Parameters:**
322+
| Parameter | Type | Description |
323+
| --- | --- | --- |
324+
| convertOwner | boolean | |
325+
326+
### isConvertOwned() {#isConvertOwned--}
327+
```
328+
public boolean isConvertOwned()
329+
```
330+
331+
332+
Option to control whether the owned documents in the documents container must be converted
333+
334+
**Returns:**
335+
boolean
336+
### setConvertOwned(boolean convertOwned) {#setConvertOwned-boolean-}
337+
```
338+
public void setConvertOwned(boolean convertOwned)
339+
```
340+
341+
342+
343+
344+
**Parameters:**
345+
| Parameter | Type | Description |
346+
| --- | --- | --- |
347+
| convertOwned | boolean | |
348+
349+
### getDepth() {#getDepth--}
350+
```
351+
public int getDepth()
352+
```
353+
354+
355+
Option to control how many levels in depth to perform conversion
356+
357+
**Returns:**
358+
int
359+
### setDepth(int depth) {#setDepth-int-}
360+
```
361+
public void setDepth(int depth)
362+
```
363+
364+
365+
366+
367+
**Parameters:**
368+
| Parameter | Type | Description |
369+
| --- | --- | --- |
370+
| depth | int | |
371+

content/sites/groupdocs/conversion/english/java/com.groupdocs.conversion.options.load/spreadsheetloadoptions/_index.md

Lines changed: 77 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ url: /java/com.groupdocs.conversion.options.load/spreadsheetloadoptions/
1010
java.lang.Object, [com.groupdocs.conversion.contracts.ValueObject](../../com.groupdocs.conversion.contracts/valueobject), [com.groupdocs.conversion.options.load.LoadOptions](../../com.groupdocs.conversion.options.load/loadoptions)
1111

1212
**All Implemented Interfaces:**
13-
java.lang.Cloneable, java.io.Serializable
13+
java.lang.Cloneable, java.io.Serializable, [com.groupdocs.conversion.contracts.IDocumentsContainerLoadOptions](../../com.groupdocs.conversion.contracts/idocumentscontainerloadoptions)
1414
```
15-
public class SpreadsheetLoadOptions extends LoadOptions implements Cloneable, Serializable
15+
public class SpreadsheetLoadOptions extends LoadOptions implements Cloneable, Serializable, IDocumentsContainerLoadOptions
1616
```
1717

1818
Options for loading Spreadsheet documents.
@@ -65,6 +65,12 @@ Options for loading Spreadsheet documents.
6565
| [setRowsPerPage(int rowsPerPage)](#setRowsPerPage-int-) | Split a worksheet into pages by rows. |
6666
| [getColumnsPerPage()](#getColumnsPerPage--) | Split a worksheet into pages by columns. |
6767
| [setColumnsPerPage(int columnsPerPage)](#setColumnsPerPage-int-) | Split a worksheet into pages by columns. |
68+
| [isConvertOwner()](#isConvertOwner--) | |
69+
| [setConvertOwner(boolean convertOwner)](#setConvertOwner-boolean-) | |
70+
| [isConvertOwned()](#isConvertOwned--) | |
71+
| [setConvertOwned(boolean convertOwned)](#setConvertOwned-boolean-) | |
72+
| [getDepth()](#getDepth--) | |
73+
| [setDepth(int depth)](#setDepth-int-) | |
6874
### SpreadsheetLoadOptions() {#SpreadsheetLoadOptions--}
6975
```
7076
public SpreadsheetLoadOptions()
@@ -530,3 +536,72 @@ Split a worksheet into pages by columns. Default is 0, no pagination.
530536
| --- | --- | --- |
531537
| columnsPerPage | int | |
532538

539+
### isConvertOwner() {#isConvertOwner--}
540+
```
541+
public boolean isConvertOwner()
542+
```
543+
544+
545+
Gets option to control whether the documents container itself must be converted
546+
547+
**Returns:**
548+
boolean
549+
### setConvertOwner(boolean convertOwner) {#setConvertOwner-boolean-}
550+
```
551+
public void setConvertOwner(boolean convertOwner)
552+
```
553+
554+
555+
556+
557+
**Parameters:**
558+
| Parameter | Type | Description |
559+
| --- | --- | --- |
560+
| convertOwner | boolean | |
561+
562+
### isConvertOwned() {#isConvertOwned--}
563+
```
564+
public boolean isConvertOwned()
565+
```
566+
567+
568+
Option to control whether the owned documents in the documents container must be converted
569+
570+
**Returns:**
571+
boolean
572+
### setConvertOwned(boolean convertOwned) {#setConvertOwned-boolean-}
573+
```
574+
public void setConvertOwned(boolean convertOwned)
575+
```
576+
577+
578+
579+
580+
**Parameters:**
581+
| Parameter | Type | Description |
582+
| --- | --- | --- |
583+
| convertOwned | boolean | |
584+
585+
### getDepth() {#getDepth--}
586+
```
587+
public int getDepth()
588+
```
589+
590+
591+
Option to control how many levels in depth to perform conversion
592+
593+
**Returns:**
594+
int
595+
### setDepth(int depth) {#setDepth-int-}
596+
```
597+
public void setDepth(int depth)
598+
```
599+
600+
601+
602+
603+
**Parameters:**
604+
| Parameter | Type | Description |
605+
| --- | --- | --- |
606+
| depth | int | |
607+

content/sites/groupdocs/conversion/english/java/com.groupdocs.conversion.options.load/wordprocessingloadoptions/_index.md

Lines changed: 77 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ url: /java/com.groupdocs.conversion.options.load/wordprocessingloadoptions/
1010
java.lang.Object, [com.groupdocs.conversion.contracts.ValueObject](../../com.groupdocs.conversion.contracts/valueobject), [com.groupdocs.conversion.options.load.LoadOptions](../../com.groupdocs.conversion.options.load/loadoptions)
1111

1212
**All Implemented Interfaces:**
13-
java.io.Serializable, [com.groupdocs.conversion.options.load.IResourceLoadingOptions](../../com.groupdocs.conversion.options.load/iresourceloadingoptions), [com.groupdocs.conversion.options.load.IPageNumberingLoadOptions](../../com.groupdocs.conversion.options.load/ipagenumberingloadoptions)
13+
java.io.Serializable, [com.groupdocs.conversion.options.load.IResourceLoadingOptions](../../com.groupdocs.conversion.options.load/iresourceloadingoptions), [com.groupdocs.conversion.options.load.IPageNumberingLoadOptions](../../com.groupdocs.conversion.options.load/ipagenumberingloadoptions), [com.groupdocs.conversion.contracts.IDocumentsContainerLoadOptions](../../com.groupdocs.conversion.contracts/idocumentscontainerloadoptions)
1414
```
15-
public class WordProcessingLoadOptions extends LoadOptions implements Serializable, IResourceLoadingOptions, IPageNumberingLoadOptions
15+
public class WordProcessingLoadOptions extends LoadOptions implements Serializable, IResourceLoadingOptions, IPageNumberingLoadOptions, IDocumentsContainerLoadOptions
1616
```
1717

1818
Options for loading WordProcessing documents.
@@ -67,6 +67,12 @@ Options for loading WordProcessing documents.
6767
| [setHyphenationOptions(HyphenationOptions hyphenationOptions)](#setHyphenationOptions-com.groupdocs.conversion.options.load.HyphenationOptions-) | Sets hyphenation options for WordProcessing documents. |
6868
| [isInterruptThreadIfImageExceptionThrown()](#isInterruptThreadIfImageExceptionThrown--) | Gets InterruptThreadIfImageExceptionThrown flag Default: false If true then interrupt the main conversion thread if an exception in a image processing thread occurred |
6969
| [setInterruptThreadIfImageExceptionThrown(boolean interruptThreadIfImageExceptionThrown)](#setInterruptThreadIfImageExceptionThrown-boolean-) | Sets InterruptThreadIfImageExceptionThrown flag |
70+
| [isConvertOwner()](#isConvertOwner--) | |
71+
| [setConvertOwner(boolean convertOwner)](#setConvertOwner-boolean-) | |
72+
| [isConvertOwned()](#isConvertOwned--) | |
73+
| [setConvertOwned(boolean convertOwned)](#setConvertOwned-boolean-) | |
74+
| [getDepth()](#getDepth--) | |
75+
| [setDepth(int depth)](#setDepth-int-) | |
7076
### WordProcessingLoadOptions() {#WordProcessingLoadOptions--}
7177
```
7278
public WordProcessingLoadOptions()
@@ -558,3 +564,72 @@ Sets InterruptThreadIfImageExceptionThrown flag
558564
| --- | --- | --- |
559565
| interruptThreadIfImageExceptionThrown | boolean | |
560566

567+
### isConvertOwner() {#isConvertOwner--}
568+
```
569+
public boolean isConvertOwner()
570+
```
571+
572+
573+
Gets option to control whether the documents container itself must be converted
574+
575+
**Returns:**
576+
boolean
577+
### setConvertOwner(boolean convertOwner) {#setConvertOwner-boolean-}
578+
```
579+
public void setConvertOwner(boolean convertOwner)
580+
```
581+
582+
583+
584+
585+
**Parameters:**
586+
| Parameter | Type | Description |
587+
| --- | --- | --- |
588+
| convertOwner | boolean | |
589+
590+
### isConvertOwned() {#isConvertOwned--}
591+
```
592+
public boolean isConvertOwned()
593+
```
594+
595+
596+
Option to control whether the owned documents in the documents container must be converted
597+
598+
**Returns:**
599+
boolean
600+
### setConvertOwned(boolean convertOwned) {#setConvertOwned-boolean-}
601+
```
602+
public void setConvertOwned(boolean convertOwned)
603+
```
604+
605+
606+
607+
608+
**Parameters:**
609+
| Parameter | Type | Description |
610+
| --- | --- | --- |
611+
| convertOwned | boolean | |
612+
613+
### getDepth() {#getDepth--}
614+
```
615+
public int getDepth()
616+
```
617+
618+
619+
Option to control how many levels in depth to perform conversion
620+
621+
**Returns:**
622+
int
623+
### setDepth(int depth) {#setDepth-int-}
624+
```
625+
public void setDepth(int depth)
626+
```
627+
628+
629+
630+
631+
**Parameters:**
632+
| Parameter | Type | Description |
633+
| --- | --- | --- |
634+
| depth | int | |
635+

0 commit comments

Comments
 (0)