Skip to content

Commit 84d8eee

Browse files
Update file(s) "/." from "groupdocs-watermark/Groupdocs.Watermark-References"
1 parent 1cd55c1 commit 84d8eee

File tree

360 files changed

+959
-567
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

360 files changed

+959
-567
lines changed

content/sites/groupdocs/watermark/english/net/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ version:
2828
| [GroupDocs.Watermark.Options.Email](./groupdocs.watermark.options.email) | The namespace provides classes to specify additional options when loading and saving Email messages. |
2929
| [GroupDocs.Watermark.Options.Image](./groupdocs.watermark.options.image) | The namespace provides classes to specify additional options when working with watermarks and images. |
3030
| [GroupDocs.Watermark.Options.Pdf](./groupdocs.watermark.options.pdf) | The namespace provides classes to specify additional options when working with watermarks and PDF documents. |
31-
| [GroupDocs.Watermark.Options.Presentation](./groupdocs.watermark.options.presentation) | The namespace provides classes to specify additional options when working with watermarks and PowerPoint documents. |
31+
| [GroupDocs.Watermark.Options.Presentation](./groupdocs.watermark.options.presentation) | The namespace provides classes to specify additional options when working witharks and PowerPoint documents. |
3232
| [GroupDocs.Watermark.Options.Spreadsheet](./groupdocs.watermark.options.spreadsheet) | The namespace provides classes to specify additional options when working with watermarks and Excel documents. |
3333
| [GroupDocs.Watermark.Options.WordProcessing](./groupdocs.watermark.options.wordprocessing) | The namespace provides classes to specify additional options when working with watermarks and Word documents. |
3434
| [GroupDocs.Watermark.Search](./groupdocs.watermark.search) | The namespace provides classes for searching, editing and removing watermarks in documents of different types. |

content/sites/groupdocs/watermark/english/net/groupdocs.watermark.common/_index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ The namespace provides helper classes.
1616
| [AttachmentWatermarkableImage](./attachmentwatermarkableimage) | Represents an attached image inside a content of any supported type. |
1717
| [FileType](./filetype) | Represents file type. |
1818
| [PageInfo](./pageinfo) | Represents a document page description. |
19+
| [Point](./point) | Represents a point with integer pixel coordinates. |
1920
| [ReadOnlyListBase<T>](./readonlylistbase-1) | Provides the abstract base class for a strongly typed read-only list. |
21+
| [Rectangle](./rectangle) | Represents a rectangle with integer pixel coordinates. |
2022
| [RemoveOnlyListBase<T>](./removeonlylistbase-1) | Provides the abstract base class for a strongly typed remove-only list. |
2123
## Interfaces
2224

@@ -30,6 +32,7 @@ The namespace provides helper classes.
3032
| [Dimension](./dimension) | Represents dimensions of a 2d object. |
3133
| [FormatFamily](./formatfamily) | Enumeration of supported format families. |
3234
| [HorizontalAlignment](./horizontalalignment) | Enumeration of possible horizontal alignment values. |
35+
| [InpaintingMethod](./inpaintingmethod) | Specifies the algorithm used for image inpainting. |
3336
| [VerticalAlignment](./verticalalignment) | Enumeration of possible vertical alignment values. |
3437

3538
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.watermark.dll -->
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
title: InpaintingMethod
3+
second_title: GroupDocs.Watermark for .NET API Reference
4+
description: Specifies the algorithm used for image inpainting.
5+
type: docs
6+
weight: 80
7+
url: /net/groupdocs.watermark.common/inpaintingmethod/
8+
---
9+
## InpaintingMethod enumeration
10+
11+
Specifies the algorithm used for image inpainting.
12+
13+
```csharp
14+
public enum InpaintingMethod
15+
```
16+
17+
### Values
18+
19+
| Name | Value | Description |
20+
| --- | --- | --- |
21+
| PatchBased | `0` | Patch-based inpainting (Criminisi-style). Finds similar texture patches in the known region and copies them into the mask. |
22+
| Telea | `1` | Telea algorithm. A fast marching method that propagates pixel values from the region boundary inward. |
23+
24+
### See Also
25+
26+
* namespace [GroupDocs.Watermark.Common](../../groupdocs.watermark.common)
27+
* assembly [GroupDocs.Watermark](../../)
28+
29+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.watermark.dll -->

content/sites/groupdocs/watermark/english/net/groupdocs.watermark.common/pageinfo/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: PageInfo
33
second_title: GroupDocs.Watermark for .NET API Reference
44
description: Represents a document page description.
55
type: docs
6-
weight: 80
6+
weight: 90
77
url: /net/groupdocs.watermark.common/pageinfo/
88
---
99
## PageInfo class
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
---
2+
title: Point
3+
second_title: GroupDocs.Watermark for .NET API Reference
4+
description: Represents a point with integer pixel coordinates.
5+
type: docs
6+
weight: 100
7+
url: /net/groupdocs.watermark.common/point/
8+
---
9+
## Point class
10+
11+
Represents a point with integer pixel coordinates.
12+
13+
```csharp
14+
public class Point
15+
```
16+
17+
## Constructors
18+
19+
| Name | Description |
20+
| --- | --- |
21+
| [Point](point)(int, int) | Initializes a new instance of the [`Point`](../point) class. |
22+
23+
## Properties
24+
25+
| Name | Description |
26+
| --- | --- |
27+
| [X](../../groupdocs.watermark.common/point/x) { get; } | Gets the x-coordinate of this point. |
28+
| [Y](../../groupdocs.watermark.common/point/y) { get; } | Gets the y-coordinate of this point. |
29+
30+
### See Also
31+
32+
* namespace [GroupDocs.Watermark.Common](../../groupdocs.watermark.common)
33+
* assembly [GroupDocs.Watermark](../../)
34+
35+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.watermark.dll -->
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
title: Point
3+
second_title: GroupDocs.Watermark for .NET API Reference
4+
description: Initializes a new instance of the Pointgroupdocs.watermark.common/point class.
5+
type: docs
6+
weight: 10
7+
url: /net/groupdocs.watermark.common/point/point/
8+
---
9+
## Point constructor
10+
11+
Initializes a new instance of the [`Point`](../../point) class.
12+
13+
```csharp
14+
public Point(int x, int y)
15+
```
16+
17+
| Parameter | Type | Description |
18+
| --- | --- | --- |
19+
| x | Int32 | The x-coordinate of the point. |
20+
| y | Int32 | The y-coordinate of the point. |
21+
22+
### See Also
23+
24+
* class [Point](../../point)
25+
* namespace [GroupDocs.Watermark.Common](../../../groupdocs.watermark.common)
26+
* assembly [GroupDocs.Watermark](../../../)
27+
28+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.watermark.dll -->
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
title: X
3+
second_title: GroupDocs.Watermark for .NET API Reference
4+
description: Gets the xcoordinate of this point.
5+
type: docs
6+
weight: 20
7+
url: /net/groupdocs.watermark.common/point/x/
8+
---
9+
## Point.X property
10+
11+
Gets the x-coordinate of this point.
12+
13+
```csharp
14+
public int X { get; }
15+
```
16+
17+
### See Also
18+
19+
* class [Point](../../point)
20+
* namespace [GroupDocs.Watermark.Common](../../../groupdocs.watermark.common)
21+
* assembly [GroupDocs.Watermark](../../../)
22+
23+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.watermark.dll -->
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
title: Y
3+
second_title: GroupDocs.Watermark for .NET API Reference
4+
description: Gets the ycoordinate of this point.
5+
type: docs
6+
weight: 30
7+
url: /net/groupdocs.watermark.common/point/y/
8+
---
9+
## Point.Y property
10+
11+
Gets the y-coordinate of this point.
12+
13+
```csharp
14+
public int Y { get; }
15+
```
16+
17+
### See Also
18+
19+
* class [Point](../../point)
20+
* namespace [GroupDocs.Watermark.Common](../../../groupdocs.watermark.common)
21+
* assembly [GroupDocs.Watermark](../../../)
22+
23+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.watermark.dll -->

content/sites/groupdocs/watermark/english/net/groupdocs.watermark.common/readonlylistbase-1/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: ReadOnlyListBaseT
33
second_title: GroupDocs.Watermark for .NET API Reference
44
description: Provides the abstract base class for a strongly typed readonly list.
55
type: docs
6-
weight: 90
6+
weight: 110
77
url: /net/groupdocs.watermark.common/readonlylistbase-1/
88
---
99
## ReadOnlyListBase&lt;T&gt; class
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
---
2+
title: Rectangle
3+
second_title: GroupDocs.Watermark for .NET API Reference
4+
description: Represents a rectangle with integer pixel coordinates.
5+
type: docs
6+
weight: 120
7+
url: /net/groupdocs.watermark.common/rectangle/
8+
---
9+
## Rectangle class
10+
11+
Represents a rectangle with integer pixel coordinates.
12+
13+
```csharp
14+
public class Rectangle
15+
```
16+
17+
## Constructors
18+
19+
| Name | Description |
20+
| --- | --- |
21+
| [Rectangle](rectangle)(int, int, int, int) | Initializes a new instance of the [`Rectangle`](../rectangle) class. |
22+
23+
## Properties
24+
25+
| Name | Description |
26+
| --- | --- |
27+
| [Height](../../groupdocs.watermark.common/rectangle/height) { get; } | Gets the height of the rectangle. |
28+
| [Width](../../groupdocs.watermark.common/rectangle/width) { get; } | Gets the width of the rectangle. |
29+
| [X](../../groupdocs.watermark.common/rectangle/x) { get; } | Gets the x-coordinate of the upper-left corner. |
30+
| [Y](../../groupdocs.watermark.common/rectangle/y) { get; } | Gets the y-coordinate of the upper-left corner. |
31+
32+
### See Also
33+
34+
* namespace [GroupDocs.Watermark.Common](../../groupdocs.watermark.common)
35+
* assembly [GroupDocs.Watermark](../../)
36+
37+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.watermark.dll -->

0 commit comments

Comments
 (0)