NoSubsetting
FontEmbeddingLicensingRights.NoSubsetting property
Indique la restriction « Aucun sous-ensemble ».
public bool NoSubsetting { get; }
Remarques
Lorsque cette option est activée, la police ne doit pas être modifiée avant l’intégration. D’autres restrictions d’intégration s’appliquent également.
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
- class FontEmbeddingLicensingRights
- espace de noms Aspose.Words.Fonts
- Assemblée Aspose.Words