DocumentFormatConfiguration
DocumentFormatConfiguration class
表示类型引用DocumentFormatInstance
-派生类和支持的文件扩展名列表,用于更快的格式检测。
public class DocumentFormatConfiguration
构造函数
姓名 | 描述 |
---|---|
DocumentFormatConfiguration() | 初始化 DocumentFormatConfiguration 类的新实例。 |
特性
姓名 | 描述 |
---|---|
DocumentType { get; set; } | 获取或设置类的类型,继承自DocumentFormatInstance |
ExtensionFilter { get; set; } | 获取或设置逗号 (",") 分隔的文件扩展名列表(例如“.pdf”),不区分大小写。 |
InitializationData { get; set; } | 获取或设置数据,需要DocumentFormatInstance 初始化. |
方法
姓名 | 描述 |
---|---|
SupportsExtension(string) | 检查给定的文件扩展名是否可以作为 DocumentType. 处理 |
评论
了解更多
- 更多细节GroupDocs.Redaction配置: 扩展支持的扩展列表
- 有关实现自定义格式的更多详细信息: 创建自定义格式处理程序
例子
以下示例演示了如何为自定义格式配置设置属性。
var adobePhotoshopSettings = new DocumentFormatConfiguration();
adobePhotoshopSettings.ExtensionFilter = ".psd";
adobePhotoshopSettings.DocumentType = typeof(MyAdobePhotoshopFormatInstance);