Condividi tramite


IRangeValueProvider.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à

Boolean

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 non è di sola lettura.

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

Si applica a

Vedi anche