Imports Infragistics.Win
Imports Infragistics.Win.UltraWinSchedule
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Debug.WriteLine("The 'AllowColumnSizing' property's value resolves to " + Me.UltraDayView1.AllowColumnResizingResolved.ToString())
Debug.WriteLine("The 'ColumnScrolling' property's value resolves to " + Me.UltraDayView1.ColumnScrollingResolved.ToString())
Debug.WriteLine("The 'MaximumVisibleDays' property's value resolves to " + Me.UltraDayView1.MaximumVisibleDaysResolved.ToString())
Debug.WriteLine("The 'ShowOwnerHeader' property's value resolves to " + Me.UltraDayView1.ShowOwnerHeaderResolved.ToString())
Debug.WriteLine("The 'TimeSlotDescriptorLabelStyle' property's value resolves to " + Me.UltraDayView1.TimeSlotDescriptorLabelStyleResolved.ToString())
End Sub