Skip to content

Commit a575e96

Browse files
Update file(s) "/." from "groupdocs-viewer/Groupdocs.Viewer-References"
1 parent cc84a15 commit a575e96

304 files changed

Lines changed: 526 additions & 321 deletions

File tree

Some content is hidden

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

content/sites/groupdocs/viewer/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.Viewer 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.1"
8+
version: "25.2"
99
---
1010
## Namespaces
1111

content/sites/groupdocs/viewer/english/net/groupdocs.viewer.drawing/argb32color/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ url: /net/groupdocs.viewer.drawing/argb32color/
1111
Represents 32-bit color in ARGB format, with 8 bits per every channel (Alpha, Red, Green, Blue). Supports transparency.
1212

1313
```csharp
14-
public struct Argb32Color : IEquatable<>, IEquatable<Argb32Color>, IEquatable<Rgb24Color>
14+
public struct Argb32Color : IEquatable<>, IEquatable<Argb32Color>, IEquatable<Rgb24Color>
1515
```
1616

1717
## Properties

content/sites/groupdocs/viewer/english/net/groupdocs.viewer.fonts/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ The namespace provides classes and enumerations to manage fonts used during rend
1414
| --- | --- |
1515
| [FolderFontSource](./folderfontsource) | Represents the folder that contains TrueType fonts. |
1616
| [FontSettings](./fontsettings) | Provides methods for working with sources to look for TrueType fonts. |
17+
| [UsedFontInfo](./usedfontinfo) | Represents info about one font (including its binary data), which is used in some document |
1718
## Interfaces
1819

1920
| Interface | Description |
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
title: UsedFontInfo
3+
second_title: GroupDocs.Viewer for .NET API Reference
4+
description: Represents info about one font including its binary data which is used in some document
5+
type: docs
6+
weight: 220
7+
url: /net/groupdocs.viewer.fonts/usedfontinfo/
8+
---
9+
## UsedFontInfo class
10+
11+
Represents info about one font (including its binary data), which is used in some document
12+
13+
```csharp
14+
public sealed class UsedFontInfo
15+
```
16+
17+
## Properties
18+
19+
| Name | Description |
20+
| --- | --- |
21+
| [Content](../../groupdocs.viewer.fonts/usedfontinfo/content) { get; } | Binary content of the font |
22+
| [FamilyName](../../groupdocs.viewer.fonts/usedfontinfo/familyname) { get; } | Family name of the font |
23+
| [IsEmbedded](../../groupdocs.viewer.fonts/usedfontinfo/isembedded) { get; } | Indicates whether this font is embedded in the document (`true`) or is used from the system directory (`false`) |
24+
| [Name](../../groupdocs.viewer.fonts/usedfontinfo/name) { get; } | Name of this font |
25+
| [Style](../../groupdocs.viewer.fonts/usedfontinfo/style) { get; } | Font style name |
26+
27+
### See Also
28+
29+
* namespace [GroupDocs.Viewer.Fonts](../../groupdocs.viewer.fonts)
30+
* assembly [GroupDocs.Viewer](../../)
31+
32+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.viewer.dll -->
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
title: Content
3+
second_title: GroupDocs.Viewer for .NET API Reference
4+
description: Binary content of the font
5+
type: docs
6+
weight: 10
7+
url: /net/groupdocs.viewer.fonts/usedfontinfo/content/
8+
---
9+
## UsedFontInfo.Content property
10+
11+
Binary content of the font
12+
13+
```csharp
14+
public byte[] Content { get; }
15+
```
16+
17+
### See Also
18+
19+
* class [UsedFontInfo](../../usedfontinfo)
20+
* namespace [GroupDocs.Viewer.Fonts](../../../groupdocs.viewer.fonts)
21+
* assembly [GroupDocs.Viewer](../../../)
22+
23+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.viewer.dll -->
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
title: FamilyName
3+
second_title: GroupDocs.Viewer for .NET API Reference
4+
description: Family name of the font
5+
type: docs
6+
weight: 20
7+
url: /net/groupdocs.viewer.fonts/usedfontinfo/familyname/
8+
---
9+
## UsedFontInfo.FamilyName property
10+
11+
Family name of the font
12+
13+
```csharp
14+
public string FamilyName { get; }
15+
```
16+
17+
### See Also
18+
19+
* class [UsedFontInfo](../../usedfontinfo)
20+
* namespace [GroupDocs.Viewer.Fonts](../../../groupdocs.viewer.fonts)
21+
* assembly [GroupDocs.Viewer](../../../)
22+
23+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.viewer.dll -->
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
title: IsEmbedded
3+
second_title: GroupDocs.Viewer for .NET API Reference
4+
description: Indicates whether this font is embedded in the document true or is used from the system directory false
5+
type: docs
6+
weight: 30
7+
url: /net/groupdocs.viewer.fonts/usedfontinfo/isembedded/
8+
---
9+
## UsedFontInfo.IsEmbedded property
10+
11+
Indicates whether this font is embedded in the document (`true`) or is used from the system directory (`false`)
12+
13+
```csharp
14+
public bool IsEmbedded { get; }
15+
```
16+
17+
### See Also
18+
19+
* class [UsedFontInfo](../../usedfontinfo)
20+
* namespace [GroupDocs.Viewer.Fonts](../../../groupdocs.viewer.fonts)
21+
* assembly [GroupDocs.Viewer](../../../)
22+
23+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.viewer.dll -->
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
title: Name
3+
second_title: GroupDocs.Viewer for .NET API Reference
4+
description: Name of this font
5+
type: docs
6+
weight: 40
7+
url: /net/groupdocs.viewer.fonts/usedfontinfo/name/
8+
---
9+
## UsedFontInfo.Name property
10+
11+
Name of this font
12+
13+
```csharp
14+
public string Name { get; }
15+
```
16+
17+
### See Also
18+
19+
* class [UsedFontInfo](../../usedfontinfo)
20+
* namespace [GroupDocs.Viewer.Fonts](../../../groupdocs.viewer.fonts)
21+
* assembly [GroupDocs.Viewer](../../../)
22+
23+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.viewer.dll -->
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
title: Style
3+
second_title: GroupDocs.Viewer for .NET API Reference
4+
description: Font style name
5+
type: docs
6+
weight: 50
7+
url: /net/groupdocs.viewer.fonts/usedfontinfo/style/
8+
---
9+
## UsedFontInfo.Style property
10+
11+
Font style name
12+
13+
```csharp
14+
public string Style { get; }
15+
```
16+
17+
### See Also
18+
19+
* class [UsedFontInfo](../../usedfontinfo)
20+
* namespace [GroupDocs.Viewer.Fonts](../../../groupdocs.viewer.fonts)
21+
* assembly [GroupDocs.Viewer](../../../)
22+
23+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.viewer.dll -->

content/sites/groupdocs/viewer/english/net/groupdocs.viewer.interfaces/createfilestream/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: CreateFileStream
33
second_title: GroupDocs.Viewer for .NET API Reference
44
description: Represents the method that instantiates stream used to write output file data.
55
type: docs
6-
weight: 230
6+
weight: 240
77
url: /net/groupdocs.viewer.interfaces/createfilestream/
88
---
99
## CreateFileStream delegate

0 commit comments

Comments
 (0)