RedactorConfiguration

RedactorConfiguration class

Biedt toegang tot een lijst met ondersteunde indelingen, ingebouwde en aangepaste gebruikersindelingen.

public class RedactorConfiguration

Eigenschappen

Naam Beschrijving
AvailableFormats { get; } Krijgt een lijst met herkende formaten, zieDocumentFormatConfiguration .

methoden

Naam Beschrijving
static GetInstance() Biedt een singleton-instantie met standaardconfiguratie van ingebouwde indelingen.
FindFormat(string) Zoekt formaatconfiguraties voor een bepaalde bestandsextensie.

Opmerkingen

Kom meer te weten

Voorbeelden

Het volgende voorbeeld laat zien hoe u een aangepaste handler voor gebruikersindelingen kunt toevoegen.

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

Het volgende voorbeeld laat zien hoe u ingebouwde of aangepaste handlers voor gebruikersindelingen kunt krijgen.

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

Zie ook