NoSubsetting

FontEmbeddingLicensingRights.NoSubsetting property

يشير إلى قيد “عدم التقسيم الفرعي”.

public bool NoSubsetting { get; }

ملاحظات

عند ضبط هذا العلم، يجب عدم تجزئة الخط قبل التضمين. تنطبق أيضًا قيود تضمين أخرى.

أمثلة

يوضح كيفية الحصول على معلومات حقوق الترخيص للخطوط المضمنة (FontInfo).

Document doc = new Document(MyDir + "Embedded font rights.docx");

// الحصول على قائمة خطوط المستند.
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);
    }
}

أنظر أيضا