Skip to content

Commit b3a7b3f

Browse files
Update file(s) "/." from "groupdocs-parser/Groupdocs.Parser-References"
1 parent c95f9e6 commit b3a7b3f

File tree

6 files changed

+134
-7
lines changed

6 files changed

+134
-7
lines changed

content/sites/groupdocs/parser/english/net/groupdocs.parser.options/loadoptions/_index.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,15 @@ public sealed class LoadOptions
2020
| --- | --- |
2121
| [LoadOptions](loadoptions#constructor)() | Initializes a new instance of the [`LoadOptions`](../loadoptions) class with empty [`Password`](./password), [`FileFormat`](./fileformat) equal to Unknown and default encodings. |
2222
| [LoadOptions](loadoptions#constructor_1)(FileFormat) | Initializes a new instance of the [`LoadOptions`](../loadoptions) class with empty [`Password`](./password) and default encodings. |
23-
| [LoadOptions](loadoptions#constructor_5)(string) | Initializes a new instance of the [`LoadOptions`](../loadoptions) class with [`FileFormat`](./fileformat) equal to Unknown and default encodings. |
24-
| [LoadOptions](loadoptions#constructor_6)(TimeSpan) | Initializes a new instance of the [`LoadOptions`](../loadoptions) class with *timeout*. |
23+
| [LoadOptions](loadoptions#constructor_5)(FileType) | Initializes a new instance of the [`LoadOptions`](../loadoptions) class with empty [`Password`](./password) and default encodings. |
24+
| [LoadOptions](loadoptions#constructor_9)(string) | Initializes a new instance of the [`LoadOptions`](../loadoptions) class with [`FileFormat`](./fileformat) equal to Unknown and default encodings. |
25+
| [LoadOptions](loadoptions#constructor_10)(TimeSpan) | Initializes a new instance of the [`LoadOptions`](../loadoptions) class with *timeout*. |
2526
| [LoadOptions](loadoptions#constructor_2)(FileFormat, string) | Initializes a new instance of the [`LoadOptions`](../loadoptions) class with the password and default encodings. |
27+
| [LoadOptions](loadoptions#constructor_6)(FileType, string) | Initializes a new instance of the [`LoadOptions`](../loadoptions) class with the password and default encodings. |
2628
| [LoadOptions](loadoptions#constructor_3)(FileFormat, string, Encoding, Encoding) | Initializes a new instance of the [`LoadOptions`](../loadoptions) class with custom encodings. |
29+
| [LoadOptions](loadoptions#constructor_7)(FileType, string, Encoding, Encoding) | Initializes a new instance of the [`LoadOptions`](../loadoptions) class with custom encodings. |
2730
| [LoadOptions](loadoptions#constructor_4)(FileFormat, string, Encoding, Encoding, TimeSpan) | Initializes a new instance of the [`LoadOptions`](../loadoptions) fully customized class. |
31+
| [LoadOptions](loadoptions#constructor_8)(FileType, string, Encoding, Encoding, TimeSpan) | Initializes a new instance of the [`LoadOptions`](../loadoptions) fully customized class. |
2832

2933
## Properties
3034

@@ -33,6 +37,7 @@ public sealed class LoadOptions
3337
| [DefaultAnsiEncoding](../../groupdocs.parser.options/loadoptions/defaultansiencoding) { get; } | Gets the default ANSI encoding which is used for encoding detection. |
3438
| [Encoding](../../groupdocs.parser.options/loadoptions/encoding) { get; } | Gets the encoding of the document. |
3539
| [FileFormat](../../groupdocs.parser.options/loadoptions/fileformat) { get; } | Gets the file format. |
40+
| [FileType](../../groupdocs.parser.options/loadoptions/filetype) { get; } | Gets the file type. |
3641
| [Password](../../groupdocs.parser.options/loadoptions/password) { get; } | Gets the password. |
3742
| [Timeout](../../groupdocs.parser.options/loadoptions/timeout) { get; } | Gets the value that represents the number of milliseconds to wait. |
3843

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
title: FileType
3+
second_title: GroupDocs.Parser for .NET API Reference
4+
description: Gets the file type.
5+
type: docs
6+
weight: 50
7+
url: /net/groupdocs.parser.options/loadoptions/filetype/
8+
---
9+
## LoadOptions.FileType property
10+
11+
Gets the file type.
12+
13+
```csharp
14+
public FileType FileType { get; }
15+
```
16+
17+
### Property Value
18+
19+
[`FileType`](../../filetype) enumeration that contains a file type.
20+
21+
### See Also
22+
23+
* class [FileType](../../filetype)
24+
* class [LoadOptions](../../loadoptions)
25+
* namespace [GroupDocs.Parser.Options](../../../groupdocs.parser.options)
26+
* assembly [GroupDocs.Parser](../../../)
27+
28+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.parser.dll -->

content/sites/groupdocs/parser/english/net/groupdocs.parser.options/loadoptions/loadoptions/_index.md

Lines changed: 96 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public LoadOptions()
2222

2323
---
2424

25-
## LoadOptions(TimeSpan) {#constructor_6}
25+
## LoadOptions(TimeSpan) {#constructor_10}
2626

2727
Initializes a new instance of the [`LoadOptions`](../../loadoptions) class with *timeout*.
2828

@@ -42,7 +42,7 @@ public LoadOptions(TimeSpan timeout)
4242

4343
---
4444

45-
## LoadOptions(string) {#constructor_5}
45+
## LoadOptions(string) {#constructor_9}
4646

4747
Initializes a new instance of the [`LoadOptions`](../../loadoptions) class with [`FileFormat`](../fileformat) equal to Unknown and default encodings.
4848

@@ -154,4 +154,98 @@ public LoadOptions(FileFormat fileFormat, string password, Encoding encoding,
154154
* namespace [GroupDocs.Parser.Options](../../../groupdocs.parser.options)
155155
* assembly [GroupDocs.Parser](../../../)
156156

157+
---
158+
159+
## LoadOptions(FileType) {#constructor_5}
160+
161+
Initializes a new instance of the [`LoadOptions`](../../loadoptions) class with empty [`Password`](../password) and default encodings.
162+
163+
```csharp
164+
public LoadOptions(FileType fileType)
165+
```
166+
167+
| Parameter | Type | Description |
168+
| --- | --- | --- |
169+
| fileType | FileType | The type of the file. |
170+
171+
### See Also
172+
173+
* class [FileType](../../filetype)
174+
* class [LoadOptions](../../loadoptions)
175+
* namespace [GroupDocs.Parser.Options](../../../groupdocs.parser.options)
176+
* assembly [GroupDocs.Parser](../../../)
177+
178+
---
179+
180+
## LoadOptions(FileType, string) {#constructor_6}
181+
182+
Initializes a new instance of the [`LoadOptions`](../../loadoptions) class with the password and default encodings.
183+
184+
```csharp
185+
public LoadOptions(FileType fileType, string password)
186+
```
187+
188+
| Parameter | Type | Description |
189+
| --- | --- | --- |
190+
| fileType | FileType | The type of the file. |
191+
| password | String | The password to open the password-protected file. |
192+
193+
### See Also
194+
195+
* class [FileType](../../filetype)
196+
* class [LoadOptions](../../loadoptions)
197+
* namespace [GroupDocs.Parser.Options](../../../groupdocs.parser.options)
198+
* assembly [GroupDocs.Parser](../../../)
199+
200+
---
201+
202+
## LoadOptions(FileType, string, Encoding, Encoding) {#constructor_7}
203+
204+
Initializes a new instance of the [`LoadOptions`](../../loadoptions) class with custom encodings.
205+
206+
```csharp
207+
public LoadOptions(FileType fileType, string password, Encoding encoding,
208+
Encoding defaultAnsiEncoding)
209+
```
210+
211+
| Parameter | Type | Description |
212+
| --- | --- | --- |
213+
| fileType | FileType | The type of the file. |
214+
| password | String | The password to open the password-protected file. |
215+
| encoding | Encoding | The encoding of the document. |
216+
| defaultAnsiEncoding | Encoding | The default ANSI encoding which is used for encoding detection. |
217+
218+
### See Also
219+
220+
* class [FileType](../../filetype)
221+
* class [LoadOptions](../../loadoptions)
222+
* namespace [GroupDocs.Parser.Options](../../../groupdocs.parser.options)
223+
* assembly [GroupDocs.Parser](../../../)
224+
225+
---
226+
227+
## LoadOptions(FileType, string, Encoding, Encoding, TimeSpan) {#constructor_8}
228+
229+
Initializes a new instance of the [`LoadOptions`](../../loadoptions) fully customized class.
230+
231+
```csharp
232+
public LoadOptions(FileType fileType, string password, Encoding encoding,
233+
Encoding defaultAnsiEncoding, TimeSpan timeout)
234+
```
235+
236+
| Parameter | Type | Description |
237+
| --- | --- | --- |
238+
| fileType | FileType | The type of the file. |
239+
| password | String | The password to open the password-protected file. |
240+
| encoding | Encoding | The encoding of the document. |
241+
| defaultAnsiEncoding | Encoding | The default ANSI encoding which is used for encoding detection. |
242+
| timeout | TimeSpan | The TimeSpan that represents the number of milliseconds to wait. |
243+
244+
### See Also
245+
246+
* class [FileType](../../filetype)
247+
* class [LoadOptions](../../loadoptions)
248+
* namespace [GroupDocs.Parser.Options](../../../groupdocs.parser.options)
249+
* assembly [GroupDocs.Parser](../../../)
250+
157251
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.parser.dll -->

content/sites/groupdocs/parser/english/net/groupdocs.parser.options/loadoptions/password/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Password
33
second_title: GroupDocs.Parser for .NET API Reference
44
description: Gets the password.
55
type: docs
6-
weight: 50
6+
weight: 60
77
url: /net/groupdocs.parser.options/loadoptions/password/
88
---
99
## LoadOptions.Password property

content/sites/groupdocs/parser/english/net/groupdocs.parser.options/loadoptions/timeout/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Timeout
33
second_title: GroupDocs.Parser for .NET API Reference
44
description: Gets the value that represents the number of milliseconds to wait.
55
type: docs
6-
weight: 60
6+
weight: 70
77
url: /net/groupdocs.parser.options/loadoptions/timeout/
88
---
99
## LoadOptions.Timeout property

content/sites/groupdocs/parser/english/net/groupdocs.parser.options/pagepreviewformat/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public enum PagePreviewFormat
1818

1919
| Name | Value | Description |
2020
| --- | --- | --- |
21-
| Auto | `0` | Images retain their format if no changes are required. For other cases, PNG formats are used. |
21+
| Auto | `0` | PNG, JPEG and BMP images retain their format if no changes are required. For other cases, PNG format is used. |
2222
| Png | `1` | PNG image (Portable Network Graphics). |
2323
| Jpeg | `2` | JPEG image (Joint Photographic Experts Group Format). |
2424
| Bmp | `3` | Bitmap image (Bitmap Picture Format). |

0 commit comments

Comments
 (0)