10204 : Can we read the rect of a gantt row?

Question

Can we read the rect of a gantt row?

Answer

private void axphGantX1_OnHintInfo(object sender,
AxphGantXControl.IphGantXEvents_OnHintInfoEvent e)
{
  labelHint.Text=”Starts”+e.theStart.ToString()+” and This
  long:”+e.theLength.ToString();
}

Use the e.theStart and e.theLength parameters to get the would be time/length if the user were to drop now.

Leave a Reply