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

또한보십시오