RedactorConfiguration
RedactorConfiguration class
提供对受支持格式、内置和自定义用户格式列表的访问。
public class RedactorConfiguration
特性
姓名 | 描述 |
---|---|
AvailableFormats { get; } | 获取识别格式列表,参见DocumentFormatConfiguration . |
方法
姓名 | 描述 |
---|---|
static GetInstance() | 提供具有内置格式默认配置的单例实例。 |
FindFormat(string) | 查找给定文件扩展名的格式配置。 |
评论
了解更多
- 更多细节GroupDocs.Redaction配置: 扩展支持的扩展列表
- 有关实现自定义格式的更多详细信息: 创建自定义格式处理程序
例子
以下示例演示如何添加自定义用户格式处理程序。
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");