PropertyInformation.IsLocked Proprietà

Definizione

Ottiene un valore che specifica se l'attributo di configurazione è bloccato.

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

Valore della proprietà

true se l'oggetto PropertyInformation è bloccato; in caso contrario, false.

Esempio

Nell'esempio di codice seguente viene illustrato come utilizzare la IsLocked proprietà . Questo esempio di codice fa parte di un esempio più ampio fornito per la PropertyInformation classe .

// Display the IsLocked property.
Console.WriteLine("IsLocked: {0}", propertyItem.IsLocked);
' Display the IsLocked property.
Console.WriteLine("IsLocked: {0}", propertyItem.IsLocked)

Commenti

La IsLocked proprietà restituisce true quando l'elemento correlato è bloccato dalla LockAttributes proprietà o LockAllAttributesExcept .

Si applica a