SettingMessage(String) Constructor

Definition

Initializes a new instance of the SettingMessage class.

public SettingMessage(string text);
new Microsoft.VisualStudio.Extensibility.Settings.SettingMessage : string -> Microsoft.VisualStudio.Extensibility.Settings.SettingMessage
Public Sub New (text As String)

Parameters

text
String

The text of the message.

Remarks

text supports embedded links using markdown syntax. Links can point to a setting, file, or URL:

  • "Clicking [here](config:environment.visualExperience.colorTheme) will move focus to the theme setting." (this format uses the FullId of the setting, which includes the identifiers of the the categories

    the setting is nested under).

  • "Clicking here will open your SYSTEM.INI file."
  • "Clicking here will open the Bing home page in your browser."

Applies to