IRangeValueProvider.IsReadOnly プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
コントロールの値が読み取り専用かどうかを示す値を取得します。
public:
property bool IsReadOnly { bool get(); };
public bool IsReadOnly { get; }
member this.IsReadOnly : bool
Public ReadOnly Property IsReadOnly As Boolean
プロパティ値
値が読み取り専用の場合は true
。変更可能な場合は false
。
例
次の例は、読み取り専用ではないコントロールに対するこのメソッドの実装を示しています。
/// <summary>
/// Specifies whether the control is read-only.
/// </summary>
public bool IsReadOnly
{
get
{
return !(this.customControl.Enabled);
}
}
''' <summary>
''' Specifies whether the control is read-only.
''' </summary>
Public ReadOnly Property IsReadOnly() As Boolean Implements IRangeValueProvider.IsReadOnly
Get
Return Not(Me.customControl.Enabled)
End Get
End Property