CommandFilter.RemoveFromExcludeFilter Method
Removes commands from an EXCLUDE 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 Sub RemoveFromExcludeFilter ( _
commandGroup As Guid, _
ParamArray commands As UInteger() _
)
'Usage
Dim instance As CommandFilter
Dim commandGroup As Guid
Dim commands As UInteger()
instance.RemoveFromExcludeFilter(commandGroup, _
commands)
public void RemoveFromExcludeFilter(
Guid commandGroup,
params uint[] commands
)
public:
void RemoveFromExcludeFilter(
Guid commandGroup,
... array<unsigned int>^ commands
)
public function RemoveFromExcludeFilter(
commandGroup : Guid,
... commands : uint[]
)
member RemoveFromExcludeFilter :
commandGroup:Guid *
commands:uint32[] -> unit
Parameters
- commandGroup
Type: System.Guid
The command group the command belongs to.
- commands
Type: array<System.UInt32[]
The list of commands. If null, then all commands for the group will be removed.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
Microsoft.VisualStudio.Data.Schema.Project.Common.UI Namespace