ErrorCheckOption

ErrorCheckOption class

تم تطبيق إعداد فحص الأخطاء على نطاقات معينة.

public class ErrorCheckOption

طُرق

اسموصف
AddRange(CellArea)يضيف نطاقًا واحدًا متأثرًا بهذا الإعداد.
GetCountOfRange()الحصول على عدد النطاقات التي تأثرت بهذا الإعداد.
GetRange(int)يحصل على النطاق المتأثر لهذا الإعداد بفهرس معين.
IsErrorCheck(ErrorCheckType)للتحقق مما إذا كان سيتم التحقق من نوع الخطأ المحدد.
RemoveRange(int)يزيل نطاقًا واحدًا بفهرس معين .
SetErrorCheck(ErrorCheckType, bool)يحدد ما إذا كان سيتم التحقق من نوع الخطأ المحدد.

أمثلة


[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")
   

أنظر أيضا