RedactorConfiguration

RedactorConfiguration class

يوفر الوصول إلى قائمة التنسيقات المدعومة وتنسيقات المستخدم المضمنة والمخصصة.

public class RedactorConfiguration

الخصائص

اسم وصف
AvailableFormats { get; } للحصول على قائمة بالتنسيقات التي تم التعرف عليها ، راجعDocumentFormatConfiguration .

طُرق

اسم وصف
static GetInstance() يوفر مثيل مفرد مع التكوين الافتراضي للتنسيقات المضمنة.
FindFormat(string) البحث عن تكوينات التنسيق لملحق ملف معين.

ملاحظات

يتعلم أكثر

أمثلة

يوضح المثال التالي كيفية إضافة معالج تنسيق مستخدم مخصص.

var adobePhotoshopSettings = new DocumentFormatConfiguration();
adobePhotoshopSettings.ExtensionFilter = ".psd";
adobePhotoshopSettings.DocumentType = typeof(MyAdobePhotoshopFormatInstance);
var configuration = RedactorConfiguration.GetInstance();
configuration.AvailableFormats.Add(adobePhotoshopSettings);

يوضح المثال التالي كيفية الحصول على معالجات تنسيق المستخدم المضمنة أو المخصصة.

var configuration = RedactorConfiguration.GetInstance();
var formatSettings = configuration.FindFormat(".psd");

أنظر أيضا