HtmlAnchor.Title Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient ou définit le texte de l'info-bulle qui s'affiche lorsque le pointeur de la souris est placé sur le contrôle HtmlAnchor.
public:
property System::String ^ Title { System::String ^ get(); void set(System::String ^ value); };
public string Title { get; set; }
member this.Title : string with get, set
Public Property Title As String
Valeur de propriété
Texte affiché lorsque le pointeur de la souris est placé au-dessus de HtmlAnchor.
Exemples
L’exemple de code suivant montre comment utiliser la Title propriété pour fournir du texte personnalisé pour l’info-bulle.
<%@ Page Language="C#" AutoEventWireup="True" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>ASP.NET Example</title>
</head>
<body>
<form id="form1" method="post" runat="server">
<a href="http://www.microsoft.com"
title="Site One"
runat="server"> Enter site.</a>
</form>
</body>
</html>
<%@ Page Language="VB" AutoEventWireup="True" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>ASP.NET Example</title>
</head>
<body>
<form id="form1" method="post" runat="server">
<a href="http://www.microsoft.com"
title="Site One"
runat="server"> Enter site.</a>
</form>
</body>
</html>
Remarques
Utilisez cette propriété pour fournir une info-bulle personnalisée pour le HtmlAnchor contrôle. Ce texte s’affiche lorsque le pointeur de la souris repose sur le contrôle.