Edit

Share via


Modifiability Enum

Definition

Specifies the modifiability value of a LocalizabilityAttribute for a binary XAML (BAML) class or class member.

C#
public enum Modifiability
Inheritance
Modifiability

Fields

Name Value Description
Unmodifiable 0

Targeted value is not modifiable by localizers.

Modifiable 1

Targeted value is modifiable by localizers.

Inherit 2

Targeted value modifiability is inherited from its parent node.

Examples

The following code example shows the modifiability value of localization attributes defined for a button.

XAML
<!-- 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.

Applies to

Product Versions
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9

See also