FontEmbeddingLicensingRights
Contenu
[
Cacher
]FontEmbeddingLicensingRights class
Représente les droits de licence d’intégration pour la police.
public class FontEmbeddingLicensingRights
Propriétés
Nom | La description |
---|---|
BitmapEmbeddingOnly { get; } | Indique la restriction « Incorporation de bitmap uniquement ». |
EmbeddingUsagePermissions { get; } | Autorisations d’utilisation. |
NoSubsetting { get; } | Indique la restriction « Aucun sous-ensemble ». |
Remarques
Pour en savoir plus, visitez le Section de spécification OpenType sur le portail Microsoft Typography.
Exemples
Montre comment obtenir des informations sur les droits de licence pour les polices intégrées (FontInfo).
Document doc = new Document(MyDir + "Embedded font rights.docx");
// Obtenir la liste des polices du document.
FontInfoCollection fontInfos = doc.FontInfos;
foreach (FontInfo fontInfo in fontInfos)
{
if (fontInfo.EmbeddingLicensingRights != null)
{
Console.WriteLine(fontInfo.EmbeddingLicensingRights.EmbeddingUsagePermissions);
Console.WriteLine(fontInfo.EmbeddingLicensingRights.BitmapEmbeddingOnly);
Console.WriteLine(fontInfo.EmbeddingLicensingRights.NoSubsetting);
}
}
Voir également
- espace de noms Aspose.Words.Fonts
- Assemblée Aspose.Words