Readability Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies the readability value of a LocalizabilityAttribute for a binary XAML (BAML) class or class member.
public enum class Readability
public enum Readability
type Readability =
Public Enum Readability
- Inheritance
Fields
Name | Value | Description |
---|---|---|
Unreadable | 0 | Targeted value is not readable. |
Readable | 1 | Targeted value is readable text. |
Inherit | 2 | Targeted value readability is inherited from its parent node. |
Examples
The following code example shows the readability value of a LocalizabilityAttribute defined for a button.
<!-- Define localization attributes for the button.
- The content is visible to the localizer and can be changed.
- The font family property is visible to the localizer but cannot be changed. -->
<Button
FontFamily="Microsoft San Serif"
Localization.Attributes=
"$Content(Button Readable Modifiable) FontFamily(Font Readable Unmodifiable)" >
your company name here
</Button>
Remarks
A LocalizabilityAttribute attribute can be applied to a class, property, or method.
For more information on how to use localization attributes, see Localization Attributes and Comments.