FontInfo.Strikeout 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定值,指出字型是否為加刪除線。
public:
property bool Strikeout { bool get(); void set(bool value); };
[System.ComponentModel.Bindable(true)]
public bool Strikeout { get; set; }
public bool Strikeout { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.Strikeout : bool with get, set
member this.Strikeout : bool with get, set
Public Property Strikeout As Boolean
屬性值
如果字型為加刪除線,則為 true
,否則為 false
。 預設值是 false
。
- 屬性
範例
下列範例示範如何使用 Strikeout 屬性,以程式設計方式指定控制項的刪除線字型 Label 。
<%@ 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>
備註
Strikeout使用 屬性來指定或判斷字型是否包含文字的行。
這個屬性的值會儲存在檢視狀態中。
注意
、 HyperLink 和 控制項所產生之連結的 LinkButton 字型底線行為會受到設定 Strikeout 控制項 的 FontInfo 屬性所 HtmlAnchor 影響。 Strikeout如果已設定屬性,不論其值為何,如果想要將連結加上底線,則必須明確設定 Underline 屬性。