Inline.TextDecorations 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
이 요소에 적용할 텍스트 장식을 포함하는 TextDecorationCollection을 가져옵니다.
public:
property System::Windows::TextDecorationCollection ^ TextDecorations { System::Windows::TextDecorationCollection ^ get(); void set(System::Windows::TextDecorationCollection ^ value); };
public System.Windows.TextDecorationCollection TextDecorations { get; set; }
member this.TextDecorations : System.Windows.TextDecorationCollection with get, set
Public Property TextDecorations As TextDecorationCollection
속성 값
이 요소에 적용할 텍스트 장식을 포함하는 TextDecorationCollection 컬렉션입니다.
기본값은 null 입니다(텍스트 장식이 적용되지 않음).
예제
다음 예제에서는 설정 하는 방법을 보여 줍니다 합니다 TextDecorations 특성을 Inline 요소 (Run).
<FlowDocument ColumnWidth="200">
<Paragraph>
<Run TextDecorations="Strikethrough">
This text will render with the strikethrough effect.
</Run>
</Paragraph>
</FlowDocument>
다음 그림은 이 예제에서 렌더링하는 방법을 보여줍니다.
다음 그림에서는 오버라인, 기준 선 및 밑줄 장식이 각각 렌더링되는 방식을 보여 줍니다.
다음 예제에서는 설정 하는 방법의 TextDecorations 속성 프로그래밍 방식으로 합니다.
Run run1 = new Run("This text will render with the strikethrough effect.");
run1.TextDecorations = TextDecorations.Strikethrough;
Dim run1 As New Run("This text will render with the strikethrough effect.")
run1.TextDecorations = TextDecorations.Strikethrough
설명
TextDecoration 개체가 시각적 장식 텍스트를 추가할 수 있습니다. 텍스트 장식의 네 가지가: 밑줄, 기준, 취소선 및 윗줄 합니다. 텍스트 장식에 대 한 자세한 내용은 참조 하세요. 방법: 텍스트 장식 만들기합니다.
종속성 속성 정보
식별자 필드 | TextDecorationsProperty |
메타 데이터 속성 설정 true |
AffectsRender |