LocalizabilityAttribute::Readability Property
.NET Framework (current version)
Gets or sets the readability setting of the localization attribute's targeted value.
Assembly: PresentationCore (in PresentationCore.dll)
public: property Readability Readability { Readability get(); void set(Readability value); }
Property Value
Type: System.Windows::ReadabilityThe readability setting of the localization attribute.
The following table shows the readability settings of the localization attribute.
Readability setting | Meaning |
|---|---|
Targeted value is readable text. | |
Targeted value is not readable. | |
Targeted value's readability is inherited from its parent node. |
The following code example shows the readability setting of localization attributes defined for a text block.
<!-- 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>
.NET Framework
Available since 3.0
Available since 3.0
Show: