Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

Excerpt

Sets or returns a boolean that represents whether or not this section is unlocked.

{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}
Signature
C#C#
Wiki Markup
{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}{signature:vb.net
vb.net
}
Public Property Unlocked() As Boolean
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle