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 속성을 지정 하거나 글꼴에 취소선 텍스트에 포함 되는지 여부를 확인 합니다.
이 속성의 값은 뷰 상태에 저장 됩니다.
참고
글꼴 밑줄 동작에서 생성 된 링크에 대 한를 LinkButton, HyperLink, 및 HtmlAnchor 컨트롤 설정에 영향을는 Strikeout 의 속성을 FontInfo 컨트롤에 대 한 합니다. 경우는 Strikeout 해당 값에 관계 없이 속성을 설정 하는 설정 해야 합니다는 Underline 밑줄이 표시에 대 한 링크를 원하는 경우에 명시적으로 속성입니다.