RedactorConfiguration

RedactorConfiguration class

Ger tillgång till en lista över format som stöds, inbyggda och anpassade användarformat.

public class RedactorConfiguration

Egenskaper

namn Beskrivning
AvailableFormats { get; } Får en lista över erkända format, seDocumentFormatConfiguration .

Metoder

namn Beskrivning
static GetInstance() Ger en singleton-instans med standardkonfiguration av inbyggda format.
FindFormat(string) Hittar formatkonfigurationer för ett givet filtillägg.

Anmärkningar

Läs mer

Exempel

Följande exempel visar hur man lägger till en anpassad användarformathanterare.

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

Följande exempel visar hur man får inbyggda eller anpassade användarformathanterare.

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

Se även