Spread Silverlight Documentation
Locked Property (Row)
Example 


GrapeCity.Windows.SpreadSheet.Data Namespace > Row Class : Locked Property
Gets or sets whether a row is marked as locked from editing.
Syntax
'Declaration
 
<System.ComponentModel.DefaultValueAttribute()>
Public Property Locked As System.Boolean
'Usage
 
Dim instance As Row
Dim value As System.Boolean
 
instance.Locked = value
 
value = instance.Locked
[System.ComponentModel.DefaultValue()]
public System.bool Locked {get; set;}

Property Value

true if cells in this row are locked; otherwise, false. The default value is false.
Example
This example only allows certain cells to be edited.
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;
gcSpreadSheet1.Invalidate();

private void button1_Click(object sender, RoutedEventArgs e)
        {
gcSpreadSheet1.Sheets[0].Cells[1, 1].ResetLocked();
gcSpreadSheet1.Invalidate();
        }
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
GcSpreadSheet1.Invalidate()

Private Sub Button1_Click(sender As System.Object, e As System.Windows.RoutedEventArgs) Handles Button1.Click
GcSpreadSheet1.Sheets(0).Cells(1, 1).ResetLocked()
GcSpreadSheet1.Invalidate()
End Sub
See Also

Reference

Row Class
Row Members