ReadOnlyAttribute.IsReadOnly Propriedade
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Obtém um valor que indica se a propriedade a que esse atributo está associado é somente leitura.
public:
property bool IsReadOnly { bool get(); };
public bool IsReadOnly { get; }
member this.IsReadOnly : bool
Public ReadOnly Property IsReadOnly As Boolean
Valor da propriedade
true
se a propriedade à qual esse atributo está associado for somente leitura; false
se a propriedade for leitura/gravação.
Exemplos
O exemplo de código a seguir verifica se MyProperty
é somente leitura. Primeiro, o código obtém os atributos para MyProperty
fazendo o seguinte:
Recuperando um PropertyDescriptorCollection com todas as propriedades do objeto .
Indexação no PropertyDescriptorCollection para obter
MyProperty
.Salvando os atributos dessa propriedade na variável de atributos.
Em seguida, o código define myAttribute
como o valor do ReadOnlyAttribute no AttributeCollection e verifica se a propriedade é somente leitura.
// 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