GrapeCity.Xaml.SpreadSheet.Data
Protect Property (Worksheet)
Example 


GrapeCity.Xaml.SpreadSheet.Data Namespace > Worksheet Class : Protect Property
Gets or sets whether cells on this sheet that are marked as protected are uneditable.
Syntax
'Declaration
 
<DefaultValueAttribute()>
Public Property Protect As Boolean
'Usage
 
Dim instance As Worksheet
Dim value As Boolean
 
instance.Protect = value
 
value = instance.Protect
[DefaultValue()]
public bool Protect {get; set;}
Example
This example sets the Protect property.
gcSpreadSheet1.Sheets[0].Cells[1, 1].Locked = false;
gcSpreadSheet1.Sheets[0].Cells[1, 1].Text = "Locked";
gcSpreadSheet1.Sheets[0].Columns[3].Locked = false;
gcSpreadSheet1.Sheets[0].Rows[5].Locked = false;
gcSpreadSheet1.Protect = true;
gcSpreadSheet1.Sheets[0].Protect = true;

private void Button_Click_1(object sender, RoutedEventArgs e)
        {
            gcSpreadSheet1.Sheets[0].Cells[1, 1].ResetLocked();
        }
GcSpreadSheet1.Sheets(0).Cells(1, 1).Locked = False
GcSpreadSheet1.Sheets(0).Cells(1, 1).Text = "Locked"
GcSpreadSheet1.Sheets(0).Columns(3).Locked = False
GcSpreadSheet1.Sheets(0).Rows(5).Locked = False
GcSpreadSheet1.Protect = True
GcSpreadSheet1.Sheets(0).Protect = True

Private Sub Button_Click_1(sender As Object, e As RoutedEventArgs)
GcSpreadSheet1.Sheets(0).Cells(1, 1).ResetLocked()
End Sub
See Also

Reference

Worksheet Class
Worksheet Members