GetInstance

RedactorConfiguration.GetInstance method

يوفر مثيل مفرد مع التكوين الافتراضي للتنسيقات المضمنة.

public static RedactorConfiguration GetInstance()

قيمة الإرجاع

مثيل التكوين

أمثلة

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

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

أنظر أيضا