Page tree
    Created with Raphaël 2.1.0
    Loading...
Skip to end of metadata
Go to start of metadata

Description

Sets or returns a boolean 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
  • No labels