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 whether a cell will be locked in a protected worksheet.

{signature}
{example}{code:csharp|title=C#}

          //--- Get CellLocked
          bool locked = style.CellLocked;

          //--- Set CellLocked
          style.CellLocked = true;
        
{code}
{code:vb.net
|title=vb.net
}

          '--- Get CellLocked
          Dim locked As Boolean = style.CellLocked

          '--- Set CellLocked
          style.CellLocked = True
        {code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Sets or returns whether a cell will be locked in a protected worksheet.{excerpt}
{signature:C#}
 public boolean CellLocked{ get; set; }
Signature
{signature}{signature:vb.net
vb.net
}
Public Property CellLocked() As Boolean
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle