Is there a getDependents in .net version of the aspose.cells?

Hello,

we can not find the getDependents in .Net version of aspose.cells

Is there only java that is lucky to have this function ?

Regards,

Dimitri

Hi,

I am afraid Aspose.Cells for .NET does not have this feature. I have logged this feature into our issue tracking system with an id: CELLSNET-19106. Once we have any update about it, we will let you know.

Thank you.

Hi,


We have supported to get the dependents now, please use our latest version/fix e.g: : Aspose.Cells for .NET v7.1.0.5

Sample code:
string path = @“e:\test2\book1.xlsx”;
Workbook workbook = new Workbook(path);
Worksheet worksheet = workbook.Worksheets[0];
var c = worksheet.Cells[“A1”];
var dependents = c.GetDependents(true);
foreach (var dependent in dependents)
{
Debug.WriteLine(string.Format(“{0} ---- {1} : {2}”, dependent.Worksheet.Name, dependent.Name, dependent.Value));
}


Thank you.

Thanks for this update

We couldnt wait for this feature for 18 months so we found another solution

The issues you have found earlier (filed as 19106) have been fixed in this update.