Skip to content

Commit 07aca61

Browse files
Update file(s) "/." from "groupdocs-conversion/Groupdocs.Conversion-References"
1 parent bf1e5f8 commit 07aca61

File tree

418 files changed

+672
-1077
lines changed

Some content is hidden

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

418 files changed

+672
-1077
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ weight: 10
55
url: /net/
66
description: GroupDocs.Conversion for .NET API References contain examples, code snippets, and API documentation. It provides namespaces, classes, interfaces, and other API details.
77
is_root: true
8-
version: "25.10"
8+
version: "25.11"
99
---
1010

1111
## Namespaces

content/sites/groupdocs/conversion/english/net/groupdocs.conversion.contracts/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ The namespace provides members to instantiate and release output document, manag
5656
| [PossibleConversions](./possibleconversions) | Represents a mapping what conversion pairs are supported for specific source file format |
5757
| [PresentationDocumentInfo](./presentationdocumentinfo) | Contains Presentation document metadata |
5858
| [ProjectManagementDocumentInfo](./projectmanagementdocumentinfo) | Contains ProjectManagement document metadata |
59+
| [PsdDocumentInfo](./psddocumentinfo) | Contains Psd document metadata |
5960
| [PsDocumentInfo](./psdocumentinfo) | Contains Ps document metadata |
6061
| [PublisherDocumentInfo](./publisherdocumentinfo) | Contains Publisher document metadata |
6162
| [RarDocumentInfo](./rardocumentinfo) | Contains Rar document metadata |

content/sites/groupdocs/conversion/english/net/groupdocs.conversion.contracts/enumeration/fromdisplayname/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Returns object by display name.
1212

1313
```csharp
1414
public static T FromDisplayName<T>(string displayName)
15-
where T : Enumeration, new()
15+
where T : Enumeration
1616
```
1717

1818
| Parameter | Type | Description |

content/sites/groupdocs/conversion/english/net/groupdocs.conversion.contracts/enumeration/fromvalue/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Returns object by key.
1212

1313
```csharp
1414
public static T FromValue<T>(string value)
15-
where T : Enumeration, new()
15+
where T : Enumeration
1616
```
1717

1818
| Parameter | Type | Description |
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
---
2+
title: PsdDocumentInfo
3+
second_title: GroupDocs.Conversion for .NET API Reference
4+
description: Contains Psd document metadata
5+
type: docs
6+
weight: 520
7+
url: /net/groupdocs.conversion.contracts/psddocumentinfo/
8+
---
9+
## PsdDocumentInfo class
10+
11+
Contains Psd document metadata
12+
13+
```csharp
14+
public class PsdDocumentInfo : DocumentInfo
15+
```
16+
17+
## Properties
18+
19+
| Name | Description |
20+
| --- | --- |
21+
| [BitsPerPixel](../../groupdocs.conversion.contracts/psddocumentinfo/bitsperpixel) { get; } | Gets bits per pixel |
22+
| [CreationDate](../../groupdocs.conversion.contracts/documentinfo/creationdate) { get; } | Implements [`CreationDate`](../idocumentinfo/creationdate) |
23+
| [Format](../../groupdocs.conversion.contracts/documentinfo/format) { get; } | Implements [`Format`](../idocumentinfo/format) |
24+
| [Height](../../groupdocs.conversion.contracts/psddocumentinfo/height) { get; } | Gets height |
25+
| [Item](../../groupdocs.conversion.contracts/documentinfo/item) { get; } | Implements [`Item`](../idocumentinfo/item) |
26+
| [PagesCount](../../groupdocs.conversion.contracts/documentinfo/pagescount) { get; } | Implements [`PagesCount`](../idocumentinfo/pagescount) |
27+
| [PropertyNames](../../groupdocs.conversion.contracts/documentinfo/propertynames) { get; } | Implements [`PropertyNames`](../idocumentinfo/propertynames) |
28+
| [Size](../../groupdocs.conversion.contracts/documentinfo/size) { get; } | Implements [`Size`](../idocumentinfo/size) |
29+
| [Width](../../groupdocs.conversion.contracts/psddocumentinfo/width) { get; } | Gets width |
30+
31+
### See Also
32+
33+
* class [DocumentInfo](../documentinfo)
34+
* namespace [GroupDocs.Conversion.Contracts](../../groupdocs.conversion.contracts)
35+
* assembly [GroupDocs.Conversion](../../)
36+
37+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.conversion.dll -->
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
title: BitsPerPixel
3+
second_title: GroupDocs.Conversion for .NET API Reference
4+
description: Gets bits per pixel
5+
type: docs
6+
weight: 10
7+
url: /net/groupdocs.conversion.contracts/psddocumentinfo/bitsperpixel/
8+
---
9+
## PsdDocumentInfo.BitsPerPixel property
10+
11+
Gets bits per pixel
12+
13+
```csharp
14+
public int BitsPerPixel { get; }
15+
```
16+
17+
### See Also
18+
19+
* class [PsdDocumentInfo](../../psddocumentinfo)
20+
* namespace [GroupDocs.Conversion.Contracts](../../../groupdocs.conversion.contracts)
21+
* assembly [GroupDocs.Conversion](../../../)
22+
23+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.conversion.dll -->
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
title: Height
3+
second_title: GroupDocs.Conversion for .NET API Reference
4+
description: Gets height
5+
type: docs
6+
weight: 20
7+
url: /net/groupdocs.conversion.contracts/psddocumentinfo/height/
8+
---
9+
## PsdDocumentInfo.Height property
10+
11+
Gets height
12+
13+
```csharp
14+
public int Height { get; }
15+
```
16+
17+
### See Also
18+
19+
* class [PsdDocumentInfo](../../psddocumentinfo)
20+
* namespace [GroupDocs.Conversion.Contracts](../../../groupdocs.conversion.contracts)
21+
* assembly [GroupDocs.Conversion](../../../)
22+
23+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.conversion.dll -->
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
title: Width
3+
second_title: GroupDocs.Conversion for .NET API Reference
4+
description: Gets width
5+
type: docs
6+
weight: 30
7+
url: /net/groupdocs.conversion.contracts/psddocumentinfo/width/
8+
---
9+
## PsdDocumentInfo.Width property
10+
11+
Gets width
12+
13+
```csharp
14+
public int Width { get; }
15+
```
16+
17+
### See Also
18+
19+
* class [PsdDocumentInfo](../../psddocumentinfo)
20+
* namespace [GroupDocs.Conversion.Contracts](../../../groupdocs.conversion.contracts)
21+
* assembly [GroupDocs.Conversion](../../../)
22+
23+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.conversion.dll -->

content/sites/groupdocs/conversion/english/net/groupdocs.conversion.contracts/publisherdocumentinfo/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: PublisherDocumentInfo
33
second_title: GroupDocs.Conversion for .NET API Reference
44
description: Contains Publisher document metadata
55
type: docs
6-
weight: 520
6+
weight: 530
77
url: /net/groupdocs.conversion.contracts/publisherdocumentinfo/
88
---
99
## PublisherDocumentInfo class

content/sites/groupdocs/conversion/english/net/groupdocs.conversion.contracts/rardocumentinfo/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: RarDocumentInfo
33
second_title: GroupDocs.Conversion for .NET API Reference
44
description: Contains Rar document metadata
55
type: docs
6-
weight: 530
6+
weight: 540
77
url: /net/groupdocs.conversion.contracts/rardocumentinfo/
88
---
99
## RarDocumentInfo class

0 commit comments

Comments
 (0)