ScriptEditorControl.ProcessScriptEditorDelegate Delegate

Delegate that can be specified to process an editor during enumeration.

Namespace:  Microsoft.SqlServer.Management.UI.VSIntegration.Editors
Assembly:  SQLEditors.VS (in SQLEditors.VS.dll)

Syntax

'Declaration
Protected Delegate Function ProcessScriptEditorDelegate ( _
    editor As ScriptEditorControl, _
    editorFrame As IVsWindowFrame _
) As Boolean
'Usage
Dim instance As New ProcessScriptEditorDelegate(AddressOf HandlerMethod)
protected delegate bool ProcessScriptEditorDelegate(
    ScriptEditorControl editor,
    IVsWindowFrame editorFrame
)
protected delegate bool ProcessScriptEditorDelegate(
    ScriptEditorControl^ editor, 
    IVsWindowFrame^ editorFrame
)
type ProcessScriptEditorDelegate = 
    delegate of 
        editor:ScriptEditorControl * 
        editorFrame:IVsWindowFrame -> bool
JScript supports the use of delegates, but not the declaration of new ones.

Parameters

  • editorFrame
    Type: IVsWindowFrame
    The IVsWindowFrame associated with the event.

Return Value

Type: System.Boolean
A Boolean is returned by this delegate.