FontInfo.Underline 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 une valeur qui indique si la police est soulignée.
public:
property bool Underline { bool get(); void set(bool value); };
[System.ComponentModel.Bindable(true)]
public bool Underline { get; set; }
public bool Underline { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.Underline : bool with get, set
member this.Underline : bool with get, set
Public Property Underline As Boolean
Valeur de propriété
true
si la police est soulignée ; sinon, false
. La valeur par défaut est false
.
- Attributs
Exemples
L’exemple suivant montre comment utiliser la Underline propriété pour spécifier par programmation une police soulignée pour un Label contrôle.
<%@ Page Language="C#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
void Page_Load(object sender, EventArgs e)
{
// When the page loads, set the myLabel Label control's FontInfo properties.
// Note that myLabel.Font is a FontInfo object.
myLabel.Font.Bold = true;
myLabel.Font.Italic = false;
myLabel.Font.Name = "verdana";
myLabel.Font.Overline = false;
myLabel.Font.Size = 10;
myLabel.Font.Strikeout = false;
myLabel.Font.Underline = true;
// Write information on the FontInfo object to the myLabel label.
myLabel.Text = myLabel.Font.ToString();
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>FontInfo Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>FontInfo Example</h3>
<asp:Label id="myLabel"
runat="server" >
</asp:Label>
</form>
</body>
</html>
<%@ Page Language="VB" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)
' When the page loads, set the myLabel Label control's FontInfo properties.
' Note that myLabel.Font is a FontInfo object.
myLabel.Font.Bold = True
myLabel.Font.Italic = False
myLabel.Font.Name = "verdana"
myLabel.Font.Overline = False
myLabel.Font.Size = 10
myLabel.Font.Strikeout = False
myLabel.Font.Underline = True
' Write information on the FontInfo object to the myLabel label.
myLabel.Text = myLabel.Font.ToString()
End Sub
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
<title>FontInfo Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>FontInfo Example</h3>
<asp:Label id="myLabel"
runat="server" >
</asp:Label>
</form>
</body>
</html>
Remarques
Utilisez la Underline propriété pour spécifier ou déterminer si la police contient une ligne sous le texte.
La valeur de cette propriété est stockée dans l’état d’affichage.
Notes
Le comportement de soulignement de police pour les liens générés par le LinkButtoncontrôle , HyperLinket HtmlAnchor les contrôles sont affectés par la Strikeout définition et les Overline propriétés du FontInfo contrôle. Si les propriétés ou les Strikeout Overline propriétés sont définies, quelle que soit leur valeur, vous devez définir explicitement la Underline propriété si vous souhaitez que le lien soit souligné.