IValueProvider.IsReadOnly Proprietà

Definizione

Ottiene un valore che specifica se il valore di un controllo è di sola lettura.

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

Valore della proprietà

true se il valore è di sola lettura. false se può essere modificato.

Esempio

Nell'esempio seguente viene illustrata un'implementazione di questo metodo per un controllo che consente la modifica del relativo valore.

/// <summary>
/// Specifies whether the custom control is read only.
/// </summary>
bool IValueProvider.IsReadOnly
{
    get
    {
        return false;
    }
}
''' <summary>
''' Specifies whether the custom control is read only.
''' </summary>
Private ReadOnly Property IsReadOnly() As Boolean Implements IValueProvider.IsReadOnly
    Get
        Return False
    End Get
End Property

Commenti

Un controllo deve avere IsEnabledProperty impostato su true e IsReadOnlyProperty impostato su false prima di consentire una chiamata a SetValue.

Si applica a