Command::LocalizedName Property
Visual Studio 2015
Gets the localized name of the command.
Assembly: EnvDTE (in EnvDTE.dll)
Sub LocalizedNameExample() ' 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("Localized name: " & cmdobj.LocalizedName) MsgBox("Command ID: " & cmdobj.ID) MsgBox("Command GUID: " & cmdobj.Guid) End Sub
Show: