CommandFilter.FilterCallback Delegate

Represents a callback to determine whether the given command is part of the filter.

Namespace:  Microsoft.VisualStudio.Data.Schema.Project.Common.UI
Assembly:  Microsoft.VisualStudio.Data.Schema.Project (in Microsoft.VisualStudio.Data.Schema.Project.dll)

Syntax

'Declaration
Public Delegate Function FilterCallback ( _
    commandGroup As Guid, _
    cmdId As UInteger _
) As Boolean
'Usage
Dim instance As New FilterCallback(AddressOf HandlerMethod)
public delegate bool FilterCallback(
    Guid commandGroup,
    uint cmdId
)
public delegate bool FilterCallback(
    Guid commandGroup, 
    unsigned int cmdId
)
JScript does not support delegates.
type FilterCallback = 
    delegate of 
        commandGroup:Guid * 
        cmdId:uint32 -> bool

Parameters

  • commandGroup
    Type: System.Guid
    The command group the command belongs to

Return Value

Type: System.Boolean

See Also

Reference

Microsoft.VisualStudio.Data.Schema.Project.Common.UI Namespace