RedactorConfiguration

RedactorConfiguration class

Bietet Zugriff auf eine Liste unterstützter Formate, integrierter und benutzerdefinierter Benutzerformate.

public class RedactorConfiguration

Eigenschaften

Name Beschreibung
AvailableFormats { get; } Ruft eine Liste der erkannten Formate ab, sieheDocumentFormatConfiguration .

Methoden

Name Beschreibung
static GetInstance() Stellt eine Singleton-Instanz mit Standardkonfiguration integrierter Formate bereit.
FindFormat(string) Findet Formatkonfigurationen für eine bestimmte Dateierweiterung.

Bemerkungen

Erfahren Sie mehr

Beispiele

Das folgende Beispiel zeigt, wie Sie einen benutzerdefinierten Benutzerformat-Handler hinzufügen.

var adobePhotoshopSettings = new DocumentFormatConfiguration();
adobePhotoshopSettings.ExtensionFilter = ".psd";
adobePhotoshopSettings.DocumentType = typeof(MyAdobePhotoshopFormatInstance);
var configuration = RedactorConfiguration.GetInstance();
configuration.AvailableFormats.Add(adobePhotoshopSettings);

Das folgende Beispiel zeigt, wie Sie integrierte oder benutzerdefinierte Benutzerformat-Handler erhalten.

var configuration = RedactorConfiguration.GetInstance();
var formatSettings = configuration.FindFormat(".psd");

Siehe auch