Skip to content

Commit d703ce4

Browse files
Update file(s) "/." from "groupdocs-conversion/Groupdocs.Conversion-References"
1 parent 7a9233e commit d703ce4

File tree

269 files changed

+577
-256
lines changed

Some content is hidden

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

269 files changed

+577
-256
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.4"
8+
version: "25.5"
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
@@ -27,6 +27,7 @@ The namespace provides members to instantiate and release output document, manag
2727
| [EmailDocumentInfo](./emaildocumentinfo) | Contains Email document metadata |
2828
| [Enumeration](./enumeration) | Generic enumeration class. |
2929
| [EpsDocumentInfo](./epsdocumentinfo) | Contains Ps document metadata |
30+
| [FlagsEnumeration](./flagsenumeration) | Represents an abstract base class for creating enumerations that support bitwise flag operations. |
3031
| [FontDocumentInfo](./fontdocumentinfo) | Contains Font document metadata |
3132
| [FontSubstitute](./fontsubstitute) | Describes substitution for missing font. |
3233
| [GisDocumentInfo](./gisdocumentinfo) | Contains GIS document metadata |
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---
2+
title: FlagsEnumeration
3+
second_title: GroupDocs.Conversion for .NET API Reference
4+
description: Represents an abstract base class for creating enumerations that support bitwise flag operations.
5+
type: docs
6+
weight: 200
7+
url: /net/groupdocs.conversion.contracts/flagsenumeration/
8+
---
9+
## FlagsEnumeration class
10+
11+
Represents an abstract base class for creating enumerations that support bitwise flag operations.
12+
13+
```csharp
14+
public abstract class FlagsEnumeration : Enumeration
15+
```
16+
17+
## Methods
18+
19+
| Name | Description |
20+
| --- | --- |
21+
| [CompareTo](../../groupdocs.conversion.contracts/enumeration/compareto)(object) | Compares current object to other. |
22+
| virtual [Equals](../../groupdocs.conversion.contracts/enumeration/equals)(Enumeration) | Determines whether two object instances are equal. |
23+
| override [Equals](../../groupdocs.conversion.contracts/enumeration/equals)(object) | Determines whether two object instances are equal. |
24+
| override [GetHashCode](../../groupdocs.conversion.contracts/enumeration/gethashcode)() | Serves as the default hash function. |
25+
| virtual [HasFlag<T>](../../groupdocs.conversion.contracts/flagsenumeration/hasflag)(T) | Checks if the current flag has the specified flag. |
26+
| virtual [HasFlagValue](../../groupdocs.conversion.contracts/flagsenumeration/hasflagvalue)(int) | Checks if the current flag has the specified value. |
27+
| override [ToString](../../groupdocs.conversion.contracts/flagsenumeration/tostring)() | Converts the current object to a string. |
28+
| static [Combine<T>](../../groupdocs.conversion.contracts/flagsenumeration/combine)(TT) | Combines two flags enumerations into one. |
29+
30+
### See Also
31+
32+
* class [Enumeration](../enumeration)
33+
* namespace [GroupDocs.Conversion.Contracts](../../groupdocs.conversion.contracts)
34+
* assembly [GroupDocs.Conversion](../../)
35+
36+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.conversion.dll -->
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
title: Combine
3+
second_title: GroupDocs.Conversion for .NET API Reference
4+
description: Combines two flags enumerations into one.
5+
type: docs
6+
weight: 40
7+
url: /net/groupdocs.conversion.contracts/flagsenumeration/combine/
8+
---
9+
## FlagsEnumeration.Combine&lt;T&gt; method
10+
11+
Combines two flags enumerations into one.
12+
13+
```csharp
14+
public static T Combine<T>(T left, T right)
15+
where T : FlagsEnumeration
16+
```
17+
18+
| Parameter | Description |
19+
| --- | --- |
20+
| T | |
21+
| left | |
22+
| right | |
23+
24+
### See Also
25+
26+
* class [FlagsEnumeration](../../flagsenumeration)
27+
* namespace [GroupDocs.Conversion.Contracts](../../../groupdocs.conversion.contracts)
28+
* assembly [GroupDocs.Conversion](../../../)
29+
30+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.conversion.dll -->
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
title: HasFlag
3+
second_title: GroupDocs.Conversion for .NET API Reference
4+
description: Checks if the current flag has the specified flag.
5+
type: docs
6+
weight: 10
7+
url: /net/groupdocs.conversion.contracts/flagsenumeration/hasflag/
8+
---
9+
## FlagsEnumeration.HasFlag&lt;T&gt; method
10+
11+
Checks if the current flag has the specified flag.
12+
13+
```csharp
14+
public virtual bool HasFlag<T>(T flag)
15+
where T : FlagsEnumeration
16+
```
17+
18+
| Parameter | Type | Description |
19+
| --- | --- | --- |
20+
| flag | T | The flag to check. |
21+
22+
### Return Value
23+
24+
`true` if the flag is present; otherwise, `false`.
25+
26+
### See Also
27+
28+
* class [FlagsEnumeration](../../flagsenumeration)
29+
* namespace [GroupDocs.Conversion.Contracts](../../../groupdocs.conversion.contracts)
30+
* assembly [GroupDocs.Conversion](../../../)
31+
32+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.conversion.dll -->
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
title: HasFlagValue
3+
second_title: GroupDocs.Conversion for .NET API Reference
4+
description: Checks if the current flag has the specified value.
5+
type: docs
6+
weight: 20
7+
url: /net/groupdocs.conversion.contracts/flagsenumeration/hasflagvalue/
8+
---
9+
## FlagsEnumeration.HasFlagValue method
10+
11+
Checks if the current flag has the specified value.
12+
13+
```csharp
14+
public virtual bool HasFlagValue(int value)
15+
```
16+
17+
| Parameter | Type | Description |
18+
| --- | --- | --- |
19+
| value | Int32 | The flag value to check. |
20+
21+
### Return Value
22+
23+
`true` if the value is present; otherwise, `false`.
24+
25+
### See Also
26+
27+
* class [FlagsEnumeration](../../flagsenumeration)
28+
* namespace [GroupDocs.Conversion.Contracts](../../../groupdocs.conversion.contracts)
29+
* assembly [GroupDocs.Conversion](../../../)
30+
31+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.conversion.dll -->
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
title: ToString
3+
second_title: GroupDocs.Conversion for .NET API Reference
4+
description: Converts the current object to a string.
5+
type: docs
6+
weight: 30
7+
url: /net/groupdocs.conversion.contracts/flagsenumeration/tostring/
8+
---
9+
## FlagsEnumeration.ToString method
10+
11+
Converts the current object to a string.
12+
13+
```csharp
14+
public override string ToString()
15+
```
16+
17+
### Return Value
18+
19+
The string representation of the key.
20+
21+
### See Also
22+
23+
* class [FlagsEnumeration](../../flagsenumeration)
24+
* namespace [GroupDocs.Conversion.Contracts](../../../groupdocs.conversion.contracts)
25+
* assembly [GroupDocs.Conversion](../../../)
26+
27+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.conversion.dll -->

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

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: FontSubstitute
33
second_title: GroupDocs.Conversion for .NET API Reference
44
description: Describes substitution for missing font.
55
type: docs
6-
weight: 210
6+
weight: 220
77
url: /net/groupdocs.conversion.contracts/fontsubstitute/
88
---
99
## FontSubstitute class

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

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

0 commit comments

Comments
 (0)