Partager via


HtmlAnchor.Title Propriété

Définition

Obtient ou définit le texte info-bulle affiché lorsque le pointeur de la souris est placé sur le HtmlAnchor contrôle.

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é sur le 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.

S’applique à