{description}
{excerpt}Returns whether or not the worksheet is write\-protected.{excerpt}
{signature:C#}
 public boolean IsProtected{ get; }
{signature}{signature:vb.net}
Public ReadOnly Property IsProtected() As Boolean
{signature}
{example}{code:csharp|title=C#}
bool writeProtected = ws.IsProtected;{code}
{code:vb.net|title=vb.net}
Dim writeProtected As Boolean = ws.IsProtected{code}

{example}