GetInstance

RedactorConfiguration.GetInstance method

Stellt eine Singleton-Instanz mit Standardkonfiguration integrierter Formate bereit.

public static RedactorConfiguration GetInstance()

Rückgabewert

Konfigurationsinstanz

Beispiele

Das folgende Beispiel zeigt, wie Sie einen benutzerdefinierten Formathandler hinzufügen.

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

Siehe auch