Description
Sets or returns aboolean
that represents whether or not this section is unlocked.
C#
public boolean Unlocked{ get ; set ; } |
vb.net
Public Property Unlocked() As Boolean |
Examples
C#
//--- Return Unlocked bool unlocked = oSection.Unlocked; //--- Set Unlocked oSection.Unlocked = false ; |
vb.net
'--- Return Unlocked Dim unlocked As Boolean = oSection.Unlocked '--- Set Unlocked oSection.Unlocked = False |