BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
Me.GridControl1(2, 0).Text = "sample"
Me.GridControl1(2, 0).ReadOnly = True
> Me.GridControl1(2, 0).Text = "sample"
> Me.GridControl1(2, 0).ReadOnly = True
>
Private Sub GridControl1_ClearingCells(ByVal sender As Object, ByVal e As Syncfusion.Windows.Forms.Grid.GridClearingCellsEventArgs) Handles GridControl1.ClearingCells If e.RangeList.AnyRangeIntersects(GridRangeInfo.Col(0)) Then Dim range, range1 As GridRangeInfo For Each range In e.RangeList range1 = range.ExpandRange(1, 1, GridControl1.RowCount, GridControl1.ColCount) Me.GridControl1.ClearCells(range1, True) Next e.Handled = True End If End Sub