IRangeValueProvider.IsReadOnly Eigenschaft

Definition

Ruft einen Wert ab, der angibt, ob der Wert eines Steuerelements schreibgeschützt ist.

public:
 property bool IsReadOnly { bool get(); };
public bool IsReadOnly { get; }
member this.IsReadOnly : bool
Public ReadOnly Property IsReadOnly As Boolean

Eigenschaftswert

Boolean

true, wenn der Wert schreibgeschützt ist; false, wenn er geändert werden kann.

Beispiele

Das folgende Beispiel zeigt eine Implementierung dieser Methode für ein Steuerelement, das nicht schreibgeschützt ist.

/// <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

Gilt für

Siehe auch