ReadOnlyAttribute Constructor (Boolean)
Initializes a new instance of the ReadOnlyAttribute class.
Assembly: System (in System.dll)
Parameters
- isReadOnly
-
Type:
System::Boolean
true to show that the property this attribute is bound to is read-only; false to show that the property is read/write.
Members that are marked with the ReadOnlyAttribute set to true or that do not have a Set method cannot be changed. Members that do not have this attribute or that are marked with the ReadOnlyAttribute set to false are read/write, and they can be changed. The default is No.
Note |
|---|
When you mark a property with the ReadOnlyAttribute set to true, the value of this attribute is set to the constant member Yes. For a property marked with the ReadOnlyAttribute set to false, the value is No. Therefore, when you want to check the value of this attribute in your code, you must specify the attribute as ReadOnlyAttribute::Yes or ReadOnlyAttribute::No. |
The following code example marks a property as read-only. This code creates a new ReadOnlyAttribute, sets its value to ReadOnlyAttribute::Yes, and binds it to the property.
Available since 1.1
Silverlight
Available since 3.0
Windows Phone Silverlight
Available since 7.0
