How do I get the event or the information that "Indent" or "Outdent was clicked? Any ideas how I get this information? Is possible with the following method?
Private Sub UltraCalendarInfo1_CalendarInfoChanged(ByVal sender As Object, ByVal e As Infragistics.Win.UltraWinSchedule.CalendarInfoChangedEventArgs) Handles UltraCalendarInfo1.CalendarInfoChanged End Sub
Following lines resolved my problem... in the CalendarInfoChanged...
Dim propChangeInfo As Infragistics.Shared.PropChangeInfo = e.PropChangeInfo.FindTrigger(Nothing)Dim propId As TaskPropertyIds = propChangeInfo.PropId If propId = TaskPropertyIds.Level Then ' Level was changed End If