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");

也可以看看