'Declaration Public Sub SetCellErrorText( _ ByVal rowIndex As Integer, _ ByVal columnIndex As Integer, _ ByVal errorText As String _ )
Parameters
- rowIndex
- Row index of cell
- columnIndex
- Column index of cell
- errorText
- Error text
'Declaration Public Sub SetCellErrorText( _ ByVal rowIndex As Integer, _ ByVal columnIndex As Integer, _ ByVal errorText As String _ )
fpSpread1.ShowCellErrors = true; fpSpread1.Sheets[0].Cells[1, 1].Locked = true; fpSpread1.Sheets[0].SetCellErrorText(1, 1, "ErrorText");
FpSpread1.ShowCellErrors = True FpSpread1.Sheets(0).Cells(1, 1).Locked = True FpSpread1.Sheets(0).SetCellErrorText(1, 1, "ErrorText")