LocalizabilityAttribute.Readability 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
지역화 특성 대상 값의 가독성 설정을 가져오거나 설정합니다.
public:
property System::Windows::Readability Readability { System::Windows::Readability get(); void set(System::Windows::Readability value); };
public System.Windows.Readability Readability { get; set; }
member this.Readability : System.Windows.Readability with get, set
Public Property Readability As Readability
속성 값
지역화 특성의 가독성 설정입니다.
예제
다음 코드 예제에서는 텍스트 블록에 대해 정의된 지역화 특성의 가독성 설정을 보여 줍니다.
<!-- Define localization attributes and comments for the text block.
- The content is visible to the localizer and can be changed.
- The font size property is visible to the localizer and can be changed.
- The comment specifies that the trademark font size should be used. -->
<TextBlock
FontSize="14"
Localization.Attributes=
"$Content(Text Readable Modifiable) FontSize(Font Readable Modifiable)"
Localization.Comments=
"$Content(Trademark) FontSize(Trademark font size)" >
your company name here
</TextBlock>
설명
다음 표에서는 지역화 특성의 가독성 설정을 보여 줍니다.
가독성 설정 | 의미 |
---|---|
Readable | 대상 값이 읽을 수 있는 텍스트입니다. |
Unreadable | 대상 값을 읽을 수 없습니다. |
Inherit | 대상 값의 가독성은 부모 노드에서 상속됩니다. |