IRangeValueProvider.IsReadOnly Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient une valeur qui spécifie si la valeur d'un contrôle est en lecture seule.
public:
property bool IsReadOnly { bool get(); };
public bool IsReadOnly { get; }
member this.IsReadOnly : bool
Public ReadOnly Property IsReadOnly As Boolean
Valeur de propriété
true
si la valeur est en lecture seule ; false
si elle peut être modifiée.
Exemples
L’exemple suivant montre une implémentation de cette méthode pour un contrôle qui n’est pas en lecture seule.
/// <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