PropertyInformation.IsLocked Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a value specifying whether the configuration attribute is locked.
public:
property bool IsLocked { bool get(); };
public bool IsLocked { get; }
member this.IsLocked : bool
Public ReadOnly Property IsLocked As Boolean
Property Value
true
if the PropertyInformation object is locked; otherwise, false
.
Examples
The following code example demonstrates how to use the IsLocked property. This code example is part of a larger example provided for the PropertyInformation class.
// Display the IsLocked property.
Console.WriteLine("IsLocked: {0}", propertyItem.IsLocked);
' Display the IsLocked property.
Console.WriteLine("IsLocked: {0}", propertyItem.IsLocked)
Remarks
The IsLocked property returns true
when the related element is locked by the LockAttributes or LockAllAttributesExcept property.