Compartir por


HtmlAnchor.Title Propiedad

Definición

Obtiene o establece el texto de información sobre herramientas que se muestra cuando se coloca el puntero del mouse sobre el HtmlAnchor control.

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

Valor de propiedad

El texto que se muestra cuando el puntero del mouse se coloca sobre .HtmlAnchor

Ejemplos

En el ejemplo de código siguiente se muestra cómo usar la Title propiedad para proporcionar texto personalizado para la información sobre herramientas.

<%@ 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>

Comentarios

Use esta propiedad para proporcionar una información sobre herramientas personalizada para el HtmlAnchor control . Este texto se muestra cuando el puntero del mouse se encuentra sobre el control.

Se aplica a