FontInfo.Overline Proprietà

Definizione

Ottiene o imposta un valore che indica se il carattere viene visualizzato con una linea sopra.

public:
 property bool Overline { bool get(); void set(bool value); };
[System.ComponentModel.Bindable(true)]
public bool Overline { get; set; }
public bool Overline { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.Overline : bool with get, set
member this.Overline : bool with get, set
Public Property Overline As Boolean

Valore della proprietà

true se il carattere viene visualizzato con una linea sopra; in caso contrario, false . Il valore predefinito è false.

Attributi

Esempio

Nell'esempio seguente viene illustrato come utilizzare la Overline proprietà per specificare a livello di codice un tipo di carattere sovralined per il testo in un Label controllo .

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

Commenti

Utilizzare la Overline proprietà per specificare o determinare se il tipo di carattere contiene una riga sopra il testo.

Il valore di questa proprietà viene archiviato nello stato di visualizzazione.

Nota

Il comportamento di sottolineatura del carattere per i collegamenti generati dai LinkButtoncontrolli , HyperLinke HtmlAnchor è interessato dall'impostazione FontInfo della Overline proprietà di per il controllo . Se la Overline proprietà è impostata, indipendentemente dal valore, è necessario impostare la Underline proprietà in modo esplicito se si desidera che il collegamento venga sottolineato.

Si applica a

Vedi anche