ReadOnlyAttribute(Boolean) コンストラクター

定義

ReadOnlyAttribute クラスの新しいインスタンスを初期化します。

public:
 ReadOnlyAttribute(bool isReadOnly);
public ReadOnlyAttribute (bool isReadOnly);
new System.ComponentModel.ReadOnlyAttribute : bool -> System.ComponentModel.ReadOnlyAttribute
Public Sub New (isReadOnly As Boolean)

パラメーター

isReadOnly
Boolean

この属性が関連付けられているプロパティが読み取り専用であることを示す場合は true。プロパティが読み書き可能であることを示す場合は false

次のコード例では、プロパティを読み取り専用としてマークします。 このコードでは、新 ReadOnlyAttributeしい を作成し、その値を に ReadOnlyAttribute.Yes設定し、 プロパティにバインドします。

public:
   [ReadOnly(true)]
   property int MyProperty 
   {
      int get()
      {
         // Insert code here.
         return 0;
      }
      void set( int value )
      {
         // Insert code here.
      }
   }
[ReadOnly(true)]
public int MyProperty {
   get {
      // Insert code here.
      return 0;
   }
   set {
      // Insert code here.
   }
}
<ReadOnlyAttribute(True)> _
Public Property MyProperty() As Integer
    Get
        ' Insert code here.
        Return 0
    End Get
    Set
        ' Insert code here.
    End Set
End Property

注釈

true設定されているReadOnlyAttributeメンバー、またはメソッドがないメンバーはSet変更できません。 この属性を持たないメンバー、または が にfalse設定されているReadOnlyAttributeメンバーは読み取り/書き込み可能であり、変更できます。 既定値は、No です。

Note

プロパティ ReadOnlyAttribute を に true設定すると、この属性の値は定数メンバー Yesに設定されます。 にfalse設定された プロパティのReadOnlyAttribute場合、値は ですNo。 したがって、コードでこの属性の値をチェックする場合は、 属性を または ReadOnlyAttribute.NoとしてReadOnlyAttribute.Yes指定する必要があります。

適用対象

こちらもご覧ください