I'm trying to print a dayview with a UltraSchedulePrintDocument. It's works well except that the notes don't word wrap, they just end at the edge of the notes box. If I attempt to insert CRLF's into the text, the text ends at the first CRLF, but the notes box enlarges vertically. It's weird. I would prefer to insert my own CRLF's, but wordwrapping would work.
Is their a trick I'm missing?
Me.UltraSchedulePrintDocument1.CalendarInfo = Me.UltraCalendarInfo1Me.UltraSchedulePrintDocument1.CalendarLook = Me.UltraCalendarLook1Me.UltraSchedulePrintDocument1.TemplateDayView = Me.UltraDayViewMe.UltraSchedulePrintDocument1.MaximumPagesPerWeek = 1Me.UltraSchedulePrintDocument1.PrintStyle = SchedulePrintStyle.WeeklyMe.UltraSchedulePrintDocument1.WeeklyLayoutStyle = WeeklyLayoutStyle.DayView
Me.UltraSchedulePrintDocument1.IncludeDateHeaderArea = FalseMe.UltraSchedulePrintDocument1.OriginAtMargins = FalseMe.UltraSchedulePrintDocument1.PrinterSettings.PrintToFile = False
Me.UltraSchedulePrintDocument1.NotesAreaAppearance.TextVAlign = Infragistics.Win.VAlign.TopMe.UltraSchedulePrintDocument1.NotesAreaAppearance.TextHAlign = Infragistics.Win.HAlign.LeftMe.UltraSchedulePrintDocument1.NotesAreaAppearance.TextTrimming = Infragistics.Win.TextTrimming.None
Me.UltraSchedulePrintDocument1.IncludeCalendarInfoNotesArea = TrueMe.UltraSchedulePrintDocument1.Print()