HtmlAnchor.Title Propriedade
Definição
Obtém ou define o texto de dica de ferramenta que é exibido quando o ponteiro do mouse é colocado sobre o controle HtmlAnchor.Gets or sets the ToolTip text displayed when the mouse pointer is placed over the 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 da propriedade
O texto exibido quando o ponteiro do mouse é colocado sobre o HtmlAnchor .The text displayed when the mouse pointer is placed over the HtmlAnchor.
Exemplos
O exemplo de código a seguir demonstra como usar a Title propriedade para fornecer texto personalizado para a dica de ferramenta.The following code example demonstrates how to use the Title property to provide custom text for the ToolTip.
<%@ 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>
Comentários
Use essa propriedade para fornecer uma dica de ferramenta personalizada para o HtmlAnchor controle.Use this property to provide a custom ToolTip for the HtmlAnchor control. Esse texto é exibido quando o ponteiro do mouse permanece sobre o controle.This text is displayed when the mouse pointer rests over the control.