ErrorCheckOption

ErrorCheckOption class

Fehlerprüfungseinstellung auf bestimmte Bereiche angewendet.

public class ErrorCheckOption

Methoden

NameBeschreibung
AddRange(CellArea)Fügt einen durch diese Einstellung beeinflussten Bereich hinzu.
GetCountOfRange()Ruft die Anzahl der Bereiche ab, die von dieser Einstellung beeinflusst werden.
GetRange(int)Ruft den beeinflussten Bereich dieser Einstellung nach gegebenem Index ab.
IsErrorCheck(ErrorCheckType)Prüft, ob der angegebene Fehlertyp geprüft wird.
RemoveRange(int)Entfernt einen Bereich nach gegebenem Index.
SetErrorCheck(ErrorCheckType, bool)Legt fest, ob der angegebene Fehlertyp überprüft wird.

Beispiele


[C#]

  Workbook workbook = new Workbook();
  ErrorCheckOptionCollection opts = workbook.Worksheets[0].ErrorCheckOptions;
  int optionIdx = opts.Add();
  ErrorCheckOption opt = opts[optionIdx];
  opt.SetErrorCheck(Aspose.Cells.ErrorCheckType.InconsistFormula, false);
  opt.SetErrorCheck(Aspose.Cells.ErrorCheckType.InconsistRange, false);
  opt.SetErrorCheck(Aspose.Cells.ErrorCheckType.TextDate, false);
  opt.SetErrorCheck(Aspose.Cells.ErrorCheckType.TextNumber, false);
  opt.SetErrorCheck(Aspose.Cells.ErrorCheckType.Validation, false);
  opt.AddRange(CellArea.CreateCellArea("A1", "B10"));
  workbook.Save(@"Book1.xlsx");
  
[Visual Basic]

   Dim workbook As Workbook = New Workbook()
   Dim opts As ErrorCheckOptionCollection = workbook.Worksheets(0).ErrorCheckOptions
   Dim optionIdx As Integer = opts.Add()
   Dim opt As ErrorCheckOption = opts(optionIdx)
   opt.SetErrorCheck(Aspose.Cells.ErrorCheckType.InconsistFormula, False)
   opt.SetErrorCheck(Aspose.Cells.ErrorCheckType.InconsistRange, False)
   opt.SetErrorCheck(Aspose.Cells.ErrorCheckType.TextDate, False)
   opt.SetErrorCheck(Aspose.Cells.ErrorCheckType.TextNumber, False)
   opt.SetErrorCheck(Aspose.Cells.ErrorCheckType.Validation, False)
   opt.AddRange(CellArea.CreateCellArea("A1", "B10"))
   workbook.Save("Book1.xlsx")
   

Siehe auch