Skip to content

Commit 2efa815

Browse files
Update file(s) "/." from "groupdocs-parser/Groupdocs.Parser-References"
1 parent 5701e67 commit 2efa815

12 files changed

Lines changed: 190 additions & 21 deletions

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public sealed class PagePreviewOptions
2727

2828
| Name | Description |
2929
| --- | --- |
30-
| [Dpi](../../groupdocs.parser.options/pagepreviewoptions/dpi) { get; } | Gets a dpi of the document page image. |
30+
| [Dpi](../../groupdocs.parser.options/pagepreviewoptions/dpi) { get; } | Gets a DPI of the document page image. |
3131
| [Format](../../groupdocs.parser.options/pagepreviewoptions/format) { get; } | Gets a format of the document page image. |
3232
| [ScaleFactor](../../groupdocs.parser.options/pagepreviewoptions/scalefactor) { get; } | Gets a scale factor. |
3333

content/sites/groupdocs/parser/english/net/groupdocs.parser.options/pagepreviewoptions/dpi/_index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
---
22
title: Dpi
33
second_title: GroupDocs.Parser for .NET API Reference
4-
description: Gets a dpi of the document page image.
4+
description: Gets a DPI of the document page image.
55
type: docs
66
weight: 20
77
url: /net/groupdocs.parser.options/pagepreviewoptions/dpi/
88
---
99
## PagePreviewOptions.Dpi property
1010

11-
Gets a dpi of the document page image.
11+
Gets a DPI of the document page image.
1212

1313
```csharp
1414
public int Dpi { get; }
1515
```
1616

1717
### Property Value
1818

19-
A value that sets the document page dpi. If not set, value is [`DEFAULT_DPI`](../default_dpi).
19+
A value that sets the document page DPI. If not set, value is [`DEFAULT_DPI`](../default_dpi).
2020

2121
### See Also
2222

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public PagePreviewOptions(int dpi)
5353

5454
| Parameter | Type | Description |
5555
| --- | --- | --- |
56-
| dpi | Int32 | The dpi of the document page image. |
56+
| dpi | Int32 | The DPI of the document page image. |
5757

5858
### See Also
5959

@@ -74,7 +74,7 @@ public PagePreviewOptions(PagePreviewFormat format, int dpi)
7474
| Parameter | Type | Description |
7575
| --- | --- | --- |
7676
| format | PagePreviewFormat | The format of the document page image. |
77-
| dpi | Int32 | The dpi of the document page image. |
77+
| dpi | Int32 | The DPI of the document page image. |
7878

7979
### See Also
8080

content/sites/groupdocs/parser/english/net/groupdocs.parser.templates/templatebarcode/_index.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,16 @@ public sealed class TemplateBarcode : TemplateItem
2020
| --- | --- |
2121
| [TemplateBarcode](templatebarcode#constructor)(Rectanglestring) | Initializes a new instance of the [`TemplateBarcode`](../templatebarcode) class. |
2222
| [TemplateBarcode](templatebarcode#constructor_1)(Rectanglestringint?) | Initializes a new instance of the [`TemplateBarcode`](../templatebarcode) class with the UPPER CASE name. |
23-
| [TemplateBarcode](templatebarcode#constructor_2)(Rectanglestringint?, bool) | Initializes a new instance of the [`TemplateBarcode`](../templatebarcode) class. |
23+
| [TemplateBarcode](templatebarcode#constructor_2)(Rectanglestringint?, double?) | Initializes a new instance of the [`TemplateBarcode`](../templatebarcode) class. |
24+
| [TemplateBarcode](templatebarcode#constructor_3)(Rectanglestringint?, double?, bool) | Initializes a new instance of the [`TemplateBarcode`](../templatebarcode) class. |
2425

2526
## Properties
2627

2728
| Name | Description |
2829
| --- | --- |
2930
| [Name](../../groupdocs.parser.templates/templateitem/name) { get; } | Gets the name of the template item. |
3031
| [PageIndex](../../groupdocs.parser.templates/templateitem/pageindex) { get; } | Gets the page index of the template item. |
32+
| [PageWidth](../../groupdocs.parser.templates/templateitem/pagewidth) { get; } | Gets the width of the page that was used to create the template item. |
3133
| [Rectangle](../../groupdocs.parser.templates/templatebarcode/rectangle) { get; } | Gets the rectangular area that contains the template barcode field. |
3234
| [UseUpperCaseName](../../groupdocs.parser.templates/templateitem/useuppercasename) { get; } | Gets a boolean value that indicates whether a `Name` was converted to UPPER CASE. |
3335

content/sites/groupdocs/parser/english/net/groupdocs.parser.templates/templatebarcode/templatebarcode/_index.md

Lines changed: 28 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,19 +51,45 @@ public TemplateBarcode(Rectangle rectangle, string name, int? pageIndex)
5151

5252
---
5353

54-
## TemplateBarcode(Rectangle, string, int?, bool) {#constructor_2}
54+
## TemplateBarcode(Rectangle, string, int?, double?) {#constructor_2}
5555

5656
Initializes a new instance of the [`TemplateBarcode`](../../templatebarcode) class.
5757

5858
```csharp
59-
public TemplateBarcode(Rectangle rectangle, string name, int? pageIndex, bool useUpperCaseName)
59+
public TemplateBarcode(Rectangle rectangle, string name, int? pageIndex, double? pageWidth)
6060
```
6161

6262
| Parameter | Type | Description |
6363
| --- | --- | --- |
6464
| rectangle | Rectangle | The rectangular area that contains the template barcode field. |
6565
| name | String | The barcode field name. |
6666
| pageIndex | Nullable`1 | An integer value that represents the index of the page where the template item is located; `null` if the template item is located on any page. |
67+
| pageWidth | Nullable`1 | The width of the page that was used to create the template item. |
68+
69+
### See Also
70+
71+
* class [Rectangle](../../../groupdocs.parser.data/rectangle)
72+
* class [TemplateBarcode](../../templatebarcode)
73+
* namespace [GroupDocs.Parser.Templates](../../../groupdocs.parser.templates)
74+
* assembly [GroupDocs.Parser](../../../)
75+
76+
---
77+
78+
## TemplateBarcode(Rectangle, string, int?, double?, bool) {#constructor_3}
79+
80+
Initializes a new instance of the [`TemplateBarcode`](../../templatebarcode) class.
81+
82+
```csharp
83+
public TemplateBarcode(Rectangle rectangle, string name, int? pageIndex, double? pageWidth,
84+
bool useUpperCaseName)
85+
```
86+
87+
| Parameter | Type | Description |
88+
| --- | --- | --- |
89+
| rectangle | Rectangle | The rectangular area that contains the template barcode field. |
90+
| name | String | The barcode field name. |
91+
| pageIndex | Nullable`1 | An integer value that represents the index of the page where the template item is located; `null` if the template item is located on any page. |
92+
| pageWidth | Nullable`1 | The width of the page that was used to create the template item. |
6793
| useUpperCaseName | Boolean | The value that indicates whether a `name` is converted to UPPER CASE. |
6894

6995
### See Also

content/sites/groupdocs/parser/english/net/groupdocs.parser.templates/templatefield/_index.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,16 @@ public sealed class TemplateField : TemplateItem
2020
| --- | --- |
2121
| [TemplateField](templatefield#constructor)(TemplatePositionstring) | Initializes a new instance of the [`TemplateField`](../templatefield) class. |
2222
| [TemplateField](templatefield#constructor_1)(TemplatePositionstringint?) | Initializes a new instance of the [`TemplateField`](../templatefield) class with the UPPER CASE name. |
23-
| [TemplateField](templatefield#constructor_2)(TemplatePositionstringint?, bool) | Initializes a new instance of the [`TemplateField`](../templatefield) class. |
23+
| [TemplateField](templatefield#constructor_2)(TemplatePositionstringint?, double?) | Initializes a new instance of the [`TemplateField`](../templatefield) class. |
24+
| [TemplateField](templatefield#constructor_3)(TemplatePositionstringint?, double?, bool) | Initializes a new instance of the [`TemplateField`](../templatefield) class. |
2425

2526
## Properties
2627

2728
| Name | Description |
2829
| --- | --- |
2930
| [Name](../../groupdocs.parser.templates/templateitem/name) { get; } | Gets the name of the template item. |
3031
| [PageIndex](../../groupdocs.parser.templates/templateitem/pageindex) { get; } | Gets the page index of the template item. |
32+
| [PageWidth](../../groupdocs.parser.templates/templateitem/pagewidth) { get; } | Gets the width of the page that was used to create the template item. |
3133
| [Position](../../groupdocs.parser.templates/templatefield/position) { get; } | Gets the value that describes how to find the template field on the document page. |
3234
| [UseUpperCaseName](../../groupdocs.parser.templates/templateitem/useuppercasename) { get; } | Gets a boolean value that indicates whether a `Name` was converted to UPPER CASE. |
3335

content/sites/groupdocs/parser/english/net/groupdocs.parser.templates/templatefield/templatefield/_index.md

Lines changed: 28 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,19 +51,45 @@ public TemplateField(TemplatePosition position, string name, int? pageIndex)
5151

5252
---
5353

54-
## TemplateField(TemplatePosition, string, int?, bool) {#constructor_2}
54+
## TemplateField(TemplatePosition, string, int?, double?) {#constructor_2}
5555

5656
Initializes a new instance of the [`TemplateField`](../../templatefield) class.
5757

5858
```csharp
59-
public TemplateField(TemplatePosition position, string name, int? pageIndex, bool useUpperCaseName)
59+
public TemplateField(TemplatePosition position, string name, int? pageIndex, double? pageWidth)
6060
```
6161

6262
| Parameter | Type | Description |
6363
| --- | --- | --- |
6464
| position | TemplatePosition | The field position. |
6565
| name | String | The field name. |
6666
| pageIndex | Nullable`1 | An integer value that represents the index of the page where the template item is located; `null` if the template item is located on any page. |
67+
| pageWidth | Nullable`1 | The width of the page that was used to create the template item. |
68+
69+
### See Also
70+
71+
* class [TemplatePosition](../../templateposition)
72+
* class [TemplateField](../../templatefield)
73+
* namespace [GroupDocs.Parser.Templates](../../../groupdocs.parser.templates)
74+
* assembly [GroupDocs.Parser](../../../)
75+
76+
---
77+
78+
## TemplateField(TemplatePosition, string, int?, double?, bool) {#constructor_3}
79+
80+
Initializes a new instance of the [`TemplateField`](../../templatefield) class.
81+
82+
```csharp
83+
public TemplateField(TemplatePosition position, string name, int? pageIndex, double? pageWidth,
84+
bool useUpperCaseName)
85+
```
86+
87+
| Parameter | Type | Description |
88+
| --- | --- | --- |
89+
| position | TemplatePosition | The field position. |
90+
| name | String | The field name. |
91+
| pageIndex | Nullable`1 | An integer value that represents the index of the page where the template item is located; `null` if the template item is located on any page. |
92+
| pageWidth | Nullable`1 | The width of the page that was used to create the template item. |
6793
| useUpperCaseName | Boolean | The value that indicates whether a `name` is converted to UPPER CASE. |
6894

6995
### See Also

content/sites/groupdocs/parser/english/net/groupdocs.parser.templates/templateitem/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ public abstract class TemplateItem
2020
| --- | --- |
2121
| [Name](../../groupdocs.parser.templates/templateitem/name) { get; } | Gets the name of the template item. |
2222
| [PageIndex](../../groupdocs.parser.templates/templateitem/pageindex) { get; } | Gets the page index of the template item. |
23+
| [PageWidth](../../groupdocs.parser.templates/templateitem/pagewidth) { get; } | Gets the width of the page that was used to create the template item. |
2324
| [UseUpperCaseName](../../groupdocs.parser.templates/templateitem/useuppercasename) { get; } | Gets a boolean value that indicates whether a `Name` was converted to UPPER CASE. |
2425

2526
### Remarks
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
title: PageWidth
3+
second_title: GroupDocs.Parser for .NET API Reference
4+
description: Gets the width of the page that was used to create the template item.
5+
type: docs
6+
weight: 30
7+
url: /net/groupdocs.parser.templates/templateitem/pagewidth/
8+
---
9+
## TemplateItem.PageWidth property
10+
11+
Gets the width of the page that was used to create the template item.
12+
13+
```csharp
14+
public double? PageWidth { get; }
15+
```
16+
17+
### Property Value
18+
19+
The width of the page in pixels; `null` if the page width is unknown.
20+
21+
### See Also
22+
23+
* class [TemplateItem](../../templateitem)
24+
* namespace [GroupDocs.Parser.Templates](../../../groupdocs.parser.templates)
25+
* assembly [GroupDocs.Parser](../../../)
26+
27+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.parser.dll -->

content/sites/groupdocs/parser/english/net/groupdocs.parser.templates/templateitem/useuppercasename/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: UseUpperCaseName
33
second_title: GroupDocs.Parser for .NET API Reference
44
description: Gets a boolean value that indicates whether a Name was converted to UPPER CASE.
55
type: docs
6-
weight: 30
6+
weight: 40
77
url: /net/groupdocs.parser.templates/templateitem/useuppercasename/
88
---
99
## TemplateItem.UseUpperCaseName property

0 commit comments

Comments
 (0)