FontInfo.Strikeout Property

Definition

Gets or sets a value that indicates whether the font is strikethrough.

[System.ComponentModel.Bindable(true)]
public bool Strikeout { get; set; }
public bool Strikeout { get; set; }

Property Value

true if the font is struck through; otherwise, false. The default value is false.

Attributes

Examples

The following example demonstrates how to use the Strikeout property to programmatically specify a strikethrough font for a 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>

Remarks

Use the Strikeout property to specify or determine whether the font contains a line through the text.

The value of this property is stored in view state.

Note

The font underline behavior for links generated by the LinkButton, HyperLink, and HtmlAnchor controls is affected by setting the Strikeout property of the FontInfo for the control. If the Strikeout property is set, regardless of its value, you must set the Underline property explicitly if you want the link to be underlined.

Applies to

Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also