FontInfo.Overline Propiedad
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Obtiene o establece un valor que indica si la fuente tiene estilo de línea alta.
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
Valor de propiedad
Es true
si la fuente tiene estilo de línea alta; en caso contrario, es false
. El valor predeterminado es false
.
- Atributos
Ejemplos
En el ejemplo siguiente se muestra cómo usar la Overline propiedad para especificar mediante programación una fuente sobrelineada para el texto de un Label control .
<%@ 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>
Comentarios
Utilice la Overline propiedad para especificar o determinar si la fuente contiene una línea encima del texto.
El valor de esta propiedad se almacena en estado de vista.
Nota:
El comportamiento del subrayado de fuente para los vínculos generados por los LinkButtoncontroles , HyperLinky HtmlAnchor se ve afectado estableciendo la Overline propiedad de FontInfo para el control . Si la Overline propiedad se establece, independientemente del valor de su valor, debe establecer la Underline propiedad explícitamente si desea que el vínculo esté subrayado.