Skip to content

Commit 10eff4c

Browse files
Update file(s) "/." from "groupdocs-viewer/Groupdocs.Viewer-References"
1 parent 438ee75 commit 10eff4c

89 files changed

Lines changed: 158 additions & 92 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.2"
8+
version: "25.3"
99
---
1010
## Namespaces
1111

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
@@ -24,6 +24,7 @@ The namespace provides classes and enumerations to manage fonts used during rend
2424

2525
| Enumeration | Description |
2626
| --- | --- |
27+
| [FontFormat](./fontformat) | Represents all font formats, which may be present in the [`UsedFontInfo`](../groupdocs.viewer.fonts/usedfontinfo) class |
2728
| [SearchOption](./searchoption) | Specifies whether to search the current folder, or the current folder and all subfolders. |
2829

2930
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.viewer.dll -->
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
title: FontFormat
3+
second_title: GroupDocs.Viewer for .NET API Reference
4+
description: Represents all font formats which may be present in the UsedFontInfo./usedfontinfo class
5+
type: docs
6+
weight: 190
7+
url: /net/groupdocs.viewer.fonts/fontformat/
8+
---
9+
## FontFormat enumeration
10+
11+
Represents all font formats, which may be present in the [`UsedFontInfo`](../usedfontinfo) class
12+
13+
```csharp
14+
public enum FontFormat : byte
15+
```
16+
17+
### Values
18+
19+
| Name | Value | Description |
20+
| --- | --- | --- |
21+
| Unknown | `0` | Unknown or invalid font format |
22+
| TrueTypeFont | `1` | TrueType font format (TTF) |
23+
| OpenTypeFont | `2` | OpenType font format (OTF) |
24+
| TrueTypeCollection | `3` | TrueType Collection font format (TTC) |
25+
| EmbeddedOpenType | `4` | Embedded OpenType font format (EOT) |
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 -->

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: FontSettings
33
second_title: GroupDocs.Viewer for .NET API Reference
44
description: Provides methods for working with sources to look for TrueType fonts.
55
type: docs
6-
weight: 190
6+
weight: 200
77
url: /net/groupdocs.viewer.fonts/fontsettings/
88
---
99
## FontSettings class

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: IFontSource
33
second_title: GroupDocs.Viewer for .NET API Reference
44
description: Marker interface for the font sources.
55
type: docs
6-
weight: 200
6+
weight: 210
77
url: /net/groupdocs.viewer.fonts/ifontsource/
88
---
99
## IFontSource interface

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: SearchOption
33
second_title: GroupDocs.Viewer for .NET API Reference
44
description: Specifies whether to search the current folder or the current folder and all subfolders.
55
type: docs
6-
weight: 210
6+
weight: 220
77
url: /net/groupdocs.viewer.fonts/searchoption/
88
---
99
## SearchOption enumeration

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

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: UsedFontInfo
33
second_title: GroupDocs.Viewer for .NET API Reference
44
description: Represents info about one font including its binary data which is used in some document
55
type: docs
6-
weight: 220
6+
weight: 230
77
url: /net/groupdocs.viewer.fonts/usedfontinfo/
88
---
99
## UsedFontInfo class
@@ -18,12 +18,17 @@ public sealed class UsedFontInfo
1818

1919
| Name | Description |
2020
| --- | --- |
21-
| [Content](../../groupdocs.viewer.fonts/usedfontinfo/content) { get; } | Binary content of the font |
21+
| [Content](../../groupdocs.viewer.fonts/usedfontinfo/content) { get; } | Binary content of the font as a byte array |
2222
| [FamilyName](../../groupdocs.viewer.fonts/usedfontinfo/familyname) { get; } | Family name of the font |
23+
| [Format](../../groupdocs.viewer.fonts/usedfontinfo/format) { get; } | Returns a format of this font |
2324
| [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+
| [Name](../../groupdocs.viewer.fonts/usedfontinfo/name) { get; } | Name of this font, never is null or empty string |
2526
| [Style](../../groupdocs.viewer.fonts/usedfontinfo/style) { get; } | Font style name |
2627

28+
### Remarks
29+
30+
For details, see the [documentation](https://docs.groupdocs.com/viewer/net/getting-used-fonts/).
31+
2732
### See Also
2833

2934
* namespace [GroupDocs.Viewer.Fonts](../../groupdocs.viewer.fonts)

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
22
title: Content
33
second_title: GroupDocs.Viewer for .NET API Reference
4-
description: Binary content of the font
4+
description: Binary content of the font as a byte array
55
type: docs
66
weight: 10
77
url: /net/groupdocs.viewer.fonts/usedfontinfo/content/
88
---
99
## UsedFontInfo.Content property
1010

11-
Binary content of the font
11+
Binary content of the font as a byte array
1212

1313
```csharp
1414
public byte[] Content { get; }
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
title: Format
3+
second_title: GroupDocs.Viewer for .NET API Reference
4+
description: Returns a format of this font
5+
type: docs
6+
weight: 30
7+
url: /net/groupdocs.viewer.fonts/usedfontinfo/format/
8+
---
9+
## UsedFontInfo.Format property
10+
11+
Returns a format of this font
12+
13+
```csharp
14+
public FontFormat Format { get; }
15+
```
16+
17+
### See Also
18+
19+
* enum [FontFormat](../../fontformat)
20+
* class [UsedFontInfo](../../usedfontinfo)
21+
* namespace [GroupDocs.Viewer.Fonts](../../../groupdocs.viewer.fonts)
22+
* assembly [GroupDocs.Viewer](../../../)
23+
24+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.viewer.dll -->

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: IsEmbedded
33
second_title: GroupDocs.Viewer for .NET API Reference
44
description: Indicates whether this font is embedded in the document true or is used from the system directory false
55
type: docs
6-
weight: 30
6+
weight: 40
77
url: /net/groupdocs.viewer.fonts/usedfontinfo/isembedded/
88
---
99
## UsedFontInfo.IsEmbedded property

0 commit comments

Comments
 (0)