Command.IsAvailable 属性
获取指示当前是否已启用 Command 的值。
命名空间: EnvDTE
程序集: EnvDTE(在 EnvDTE.dll 中)
语法
声明
ReadOnly Property IsAvailable As Boolean
Get
bool IsAvailable { get; }
property bool IsAvailable {
bool get ();
}
abstract IsAvailable : bool
function get IsAvailable () : boolean
属性值
类型:System.Boolean
一个布尔值,如果当前已启用该命令,则为 true;否则为 false。
示例
' Macro code.
Sub IsAvailableExample()
' Before running, you must add a reference to
' Microsoft.VisualStudio.CommandBars.
Dim cmds As Commands
Dim cmdobj As Command
Dim customin, customout As Object
Dim colAddins As AddIns
' Set references.
colAddins = DTE.AddIns()
cmds = DTE.Commands
cmdobj = cmds.Item("File.NewFile")
' List some of the command properties.
MsgBox("Command Name: " & cmdobj.Name)
MsgBox("Is Command Available?: " & cmdobj.IsAvailable)
MsgBox("Command ID: " & cmdobj.ID)
MsgBox("Command GUID: " & cmdobj.Guid)
End Sub
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。