Compartir a través de


HtmlAnchor.Title Propiedad

Definición

Obtiene o establece el texto de la información sobre herramientas que se muestra cuando el puntero del mouse se sitúa sobre el control 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

Valor de propiedad

String

Texto que se muestra cuando el puntero del mouse se sitúa sobre el control 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

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

Se aplica a