Page tree

Versions Compared

Key

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

...

Wiki Markup
{introducedin: 8.6.1

...

Description

Excerpt

Returns a SheetProtection object containing all protection properties on the worksheet.

{signature}
{example}{code:csharp|title=C#}
SheetProtection protection = ws.SheetProtection;
{code}
{code:vb.net
|title=vb.net
}
Dim protection As SheetProtection = ws.SheetProtection{code}

{example}
Signature
C#C#
}
{description}
{excerpt}Returns a [SheetProtection] object containing all protection properties on the worksheet.{excerpt}
{signature:C#}
 public SheetProtection SheetProtection{ get; }
Signature
{signature}{signature:vb.net
vb.net
}
Public ReadOnly Property SheetProtection() As SheetProtection
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle