Same StartValues
Posted: Tue Aug 30, 2005 2:07 pm
Hi all,
in a gantt chart I have some tasks in the same series on different left axes position with the same StartValue. Ex:
gantt.StartValues[0] = 123456;
gantt.StartValues[1] = 123456;
knowing the start value I want to retreive the StartValues index but doing:
int index = gantt.StartValues.IndexOf(123456);
index is always 0 and I don't find a function like IndexOf to call again to find the second index.
Any idea? Thanks in advance
in a gantt chart I have some tasks in the same series on different left axes position with the same StartValue. Ex:
gantt.StartValues[0] = 123456;
gantt.StartValues[1] = 123456;
knowing the start value I want to retreive the StartValues index but doing:
int index = gantt.StartValues.IndexOf(123456);
index is always 0 and I don't find a function like IndexOf to call again to find the second index.
Any idea? Thanks in advance