Aracılığıyla paylaş


Command.IsAvailable Özellik

Belirten bir değer alır olmasa da Command şu anda etkin durumda.

Ad alanı:  EnvDTE
Derleme:  EnvDTE (EnvDTE.dll içinde)

Sözdizimi

'Bildirim
ReadOnly Property IsAvailable As Boolean
bool IsAvailable { get; }
property bool IsAvailable {
    bool get ();
}
abstract IsAvailable : bool
function get IsAvailable () : boolean

Özellik Değeri

Tür: System.Boolean
Belirten bir Boole değeri true komutu şu anda etkin durumda ise; Aksi halde, false.

Örnekler

' 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 Güvenliği

Ayrıca bkz.

Başvuru

Command Arabirim

EnvDTE Ad Alanı