I’m creating a Excel with .NET and trying to add a DataValidation to check if a cell value is an URL.
Consider the following code:
public void AddDataValidation(CellArea cellArea, Column column, Worksheet worksheet)
{
…...var validations = worksheet.Validations; var validation = va...validations[validations.Add(cellArea)]; validation.Type = ValidationType...