Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Determines if URLs are displayed in such a way as to show they can be clicked. This option is not used.
Namespace: Microsoft.VisualStudio.Shell
Assemblies: Microsoft.VisualStudio.Shell.9.0 (in Microsoft.VisualStudio.Shell.9.0.dll)
Microsoft.VisualStudio.Shell.10.0 (in Microsoft.VisualStudio.Shell.10.0.dll)
Microsoft.VisualStudio.Shell (in Microsoft.VisualStudio.Shell.dll)
Syntax
'Declaration
Public Property ShowHotURLs As Boolean
Get
Set
'Usage
Dim instance As ProvideLanguageServiceAttribute
Dim value As Boolean
value = instance.ShowHotURLs
instance.ShowHotURLs = value
public bool ShowHotURLs { get; set; }
public:
property bool ShowHotURLs {
bool get ();
void set (bool value);
}
member ShowHotURLs : bool with get, set
function get ShowHotURLs () : boolean
function set ShowHotURLs (value : boolean)
Property Value
Type: System.Boolean
Returns true if URLs are to be displayed "hot" or clickable; otherwise, returns false.
Remarks
This property is not currently used by Visual Studio and should not be set.
This property is available for any language service implementation.
The default is false.
The registry entry looks like this:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VisualStudio\[X.Y]\Languages\Language Services\
[Language Name]\
ShowHotURLs = reg_dword: 0x00000001
Examples
[ProvideLanguageService(typeof(MyLanguageService), // Required
MyConstants.languageName, // Required
MyConstants.languageNameResourceID, // Required
// Optional language service properties
ShowHotURLs = true, // drop down bar options are supported
)]
.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
ProvideLanguageServiceAttribute Class