Visio Guy

Visio Discussions => Programming & Code => Topic started by: ziorg on January 23, 2023, 08:58:51 AM

Title: c# Cell.Dependents [closed]
Post by: ziorg on January 23, 2023, 08:58:51 AM
Hi,
I'm facing problem how to iterate trough the array returned by Cell.Dependents.
Could anyone give me a tip

for (int i = cell.Dependents.GetLowerBound(0); i < cell.Dependents.Length; i++)
  {
  Visio.Cell myCell = cell.Dependents;
  }
Thanks
Title: Re: c# Cell.Dependents [closed]
Post by: ziorg on January 23, 2023, 09:41:42 AM
Replying to myself :
for (int Counter = cell.Dependents.GetLowerBound(0) ; Counter< cell.Dependents.Length; Counter++)
     {
       Visio.Cell vsoCell = (Visio.Cell)cell.Dependents.GetValue(Counter);                               
      }