{description}
{excerpt}Sets or returns a {{boolean}} that represents whether or not this section is unlocked.{excerpt}
{signature:C#}
 public boolean Unlocked{ get; set; }
{signature}{signature:vb.net}
Public Property Unlocked() As Boolean
{signature}
{example}{code:csharp|title=C#}

          //--- Return Unlocked
          bool unlocked = oSection.Unlocked;

          //--- Set Unlocked
          oSection.Unlocked = false;
        {code}
{code:vb.net|title=vb.net}

          '--- Return Unlocked
          Dim unlocked As Boolean = oSection.Unlocked

          '--- Set Unlocked
          oSection.Unlocked = False
        {code}

{example}