Méthode ICustomEditorFactory.CreateCustomEditor
Les éléments suivants s'appliquent au v2.
Crée un éditeur personnalisé.
Espace de noms : Microsoft.WebMatrix.Extensibility.Editor
Assembly : Microsoft.WebMatrix.Extensibility (en Microsoft.WebMatrix.Extensibility.dll)
Syntaxe
'Déclaration
Function CreateCustomEditor ( _
fileName As String, _
<OutAttribute> ByRef loaderDelegate As Func, _
<OutAttribute> saverDelegate As Boolean _
) As IEditor
'Utilisation
Dim instance As ICustomEditorFactory
Dim fileName As String
Dim loaderDelegate As Func
Dim saverDelegate As Boolean
Dim returnValue As IEditor
returnValue = instance.CreateCustomEditor(fileName, _
loaderDelegate, saverDelegate)
IEditor CreateCustomEditor(
string fileName,
out Func loaderDelegate,
bool saverDelegate
)
IEditor^ CreateCustomEditor(
String^ fileName,
[OutAttribute] Func^% loaderDelegate,
[OutAttribute] bool saverDelegate
)
abstract CreateCustomEditor :
fileName:string *
loaderDelegate:Func byref *
saverDelegate:bool byref -> IEditor
function CreateCustomEditor(
fileName : String,
loaderDelegate : Func,
saverDelegate : boolean
) : IEditor
Paramètres
fileName
Type : System.StringNom de fichier de l'éditeur personnalisé.
loaderDelegate
Type : System.Func<T, TResult>%Délégué du chargeur.
saverDelegate
Type : System.BooleanDélégué de l'économiseur.
Valeur de retour
Type : Microsoft.WebMatrix.Extensibility.Editor.IEditor
Éditeur personnalisé créé.