Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
40
ultraDayView.DayTextFormat text justifing characters
posted

Are there any that can be used, for example  to place the date of the month on the left and the month on the right side ?

  • 69832
    Offline posted

    Text placement is determined by the UltraCalendarLook.DayHeaderAppearance:

    this.dayView.DayTextFormat = "ddd";
    this.dayView.CalendarLook.DayHeaderAppearance.TextHAlign = HAlign.Right;

    No, you cannot customize the placement of the different components of the date text unless you use the IUIElementDrawFilter interface and draw the text yourself.