DocumentFormatConfiguration

DocumentFormatConfiguration class

에 대한 유형 참조를 나타냅니다.DocumentFormatInstance -빠른 형식 감지를 위한 파생 클래스 및 지원되는 파일 확장명 목록.

public class DocumentFormatConfiguration

생성자

이름 설명
DocumentFormatConfiguration() DocumentFormatConfiguration 클래스의 새 인스턴스를 초기화합니다.

속성

이름 설명
DocumentType { get; set; } 클래스의 유형을 가져오거나 설정합니다.DocumentFormatInstance .
ExtensionFilter { get; set; } 쉼표(",")로 구분된 파일 확장자 목록(예: “.pdf”)을 가져오거나 설정합니다. 대/소문자를 구분하지 않습니다.
InitializationData { get; set; } 에 필요한 데이터를 가져오거나 설정합니다.DocumentFormatInstance 초기화.

행동 양식

이름 설명
SupportsExtension(string) 지정된 파일 확장자를 DocumentType으로 처리할 수 있는지 확인합니다.

비고

더 알아보기

다음 예는 사용자 지정 형식 구성에 대한 속성을 설정하는 방법을 보여줍니다.

var adobePhotoshopSettings = new DocumentFormatConfiguration();
adobePhotoshopSettings.ExtensionFilter = ".psd";
adobePhotoshopSettings.DocumentType = typeof(MyAdobePhotoshopFormatInstance);

또한보십시오