Hi,
We are using Aspose Cells new version and we are getting issues with Validation properties.It’s throwing error which says ‘Property AreaList is obsolete: Use Validation.Areas property instead’.Mentioned below is the code with i have written.
Dim _sheet As Worksheet
Dim validations As ValidationCollection = _sheet.Validations
Dim validation As Validation = validations(validations.Add(cellArea))
validation.AreaList.Add(cellArea)
What is the new property to be used for creating Cell area for validation?