'Declaration Public Property ShowRowErrors As Boolean
'Usage Dim instance As SpreadView Dim value As Boolean instance.ShowRowErrors = value value = instance.ShowRowErrors
public bool ShowRowErrors {get; set;}
'Declaration Public Property ShowRowErrors As Boolean
'Usage Dim instance As SpreadView Dim value As Boolean instance.ShowRowErrors = value value = instance.ShowRowErrors
public bool ShowRowErrors {get; set;}
FarPoint.Win.Spread.SpreadView sv = fpSpread1.GetRootWorkbook(); sv.ShowRowErrors = true; sv.ShowCellErrors = true; sv.Sheets[0].Cells[1, 1].ErrorText = "CellError"; sv.Sheets[0].Cells[1, 1].Locked = true;
Dim sv As FarPoint.Win.Spread.SpreadView = FpSpread1.GetRootWorkbook sv.ShowRowErrors = True sv.ShowCellErrors = True sv.Sheets(0).Cells(1, 1).ErrorText = "CellError" sv.Sheets(0).Cells(1, 1).Locked = True