ReadOnlyAttribute.IsReadOnly Proprietà

Definizione

Ottiene un valore che indica se la proprietà a cui è associato questo attributo è 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 la proprietà cui è associato questo attributo è di sola lettura, false se è di lettura/scrittura.

Esempio

Nell'esempio di codice seguente viene verificato se MyProperty è di sola lettura. Prima di tutto, il codice ottiene gli attributi per MyProperty eseguendo le operazioni seguenti:

Il codice imposta myAttribute quindi il valore dell'oggetto ReadOnlyAttribute in AttributeCollection e verifica se la proprietà è di sola lettura.

// Gets the attributes for the property.
AttributeCollection^ attributes = TypeDescriptor::GetProperties( this )[ "MyProperty" ]->Attributes;

// Checks to see whether the property is read-only.
ReadOnlyAttribute^ myAttribute = dynamic_cast<ReadOnlyAttribute^>(attributes[ ReadOnlyAttribute::typeid ]);
if ( myAttribute->IsReadOnly )
{
   // Insert code here.
}
// Gets the attributes for the property.
AttributeCollection attributes = 
   TypeDescriptor.GetProperties(this)["MyProperty"].Attributes;

// Checks to see whether the property is read-only.
ReadOnlyAttribute myAttribute = 
   (ReadOnlyAttribute)attributes[typeof(ReadOnlyAttribute)];

if(myAttribute.IsReadOnly) {
   // Insert code here.
}
' Gets the attributes for the property.
Dim attributes As AttributeCollection = _
   TypeDescriptor.GetProperties(Me)("MyProperty").Attributes
       
' Checks to see whether the property is read-only.
Dim myAttribute As ReadOnlyAttribute = _
   CType(attributes(GetType(ReadOnlyAttribute)), ReadOnlyAttribute)
   
If myAttribute.IsReadOnly Then
    ' Insert code here.
End If

Si applica a

Vedi anche