ErrorCheckOption
Contenido
[
Ocultar
]ErrorCheckOption class
Configuración de verificación de errores aplicada en ciertos rangos.
public class ErrorCheckOption
Métodos
Nombre | Descripción |
---|---|
AddRange(CellArea) | Agrega un rango influenciado por esta configuración. |
GetCountOfRange() | Obtiene el conteo de rangos influenciados por esta configuración. |
GetRange(int) | Obtiene el rango influenciado de esta configuración por el índice dado. |
IsErrorCheck(ErrorCheckType) | Verifica si se verificará el tipo de error dado. |
RemoveRange(int) | Elimina un rango por índice dado. |
SetErrorCheck(ErrorCheckType, bool) | Establece si se verificará el tipo de error dado. |
Ejemplos
[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")
Ver también
- espacio de nombres Aspose.Cells
- asamblea Aspose.Cells