'Declaration Public Property NotesAreaHeaderAppearance As Infragistics.Win.AppearanceBase
public Infragistics.Win.AppearanceBase NotesAreaHeaderAppearance {get; set;}
Imports Infragistics.Shared Imports Infragistics.Win Imports Infragistics.Win.UltraWinSchedule 'print one or more years using an ultramonthviewmulti Me.UltraSchedulePrintDocument1.PrintStyle = SchedulePrintStyle.Yearly 'by default, the caption of the date header will determine whether 'to render a single date or a range of dates. in the case of the yearly 'print style, a range would be something like 'January 2004-December 2004'. 'the date header caption style may be changed to always display the primary 'or range of dates. in this case, we only want the year to be displayed 'so the property is set to Primary Me.UltraSchedulePrintDocument1.DateHeaderCaptionStyle = DateHeaderCaptionStyle.Primary 'the "calendarinfo" notes area is a specialized notes area that will print 'the Note objects (see UltraCalendarInfo.Notes) associated with the date 'range being printed in the page Me.UltraSchedulePrintDocument1.IncludeCalendarInfoNotesArea = True 'there are several appearance for controlling the look of the notes areas... 'the header appearance affects solely the header area - the area with the 'caption "Notes" whereas the NotesAreaAppearance is the appearance for the 'entire notes area including the borders and background area containing the 'notes header Me.UltraSchedulePrintDocument1.NotesAreaHeaderAppearance.BackColor = Color.Black Me.UltraSchedulePrintDocument1.NotesAreaHeaderAppearance.ForeColor = Color.White Me.UltraSchedulePrintDocument1.NotesAreaAppearance.BackColor = Color.LightGray
using Infragistics.Shared; using Infragistics.Win; using Infragistics.Win.UltraWinSchedule; //print one or more years using an ultramonthviewmulti this.ultraSchedulePrintDocument1.PrintStyle = SchedulePrintStyle.Yearly; //by default, the caption of the date header will determine whether //to render a single date or a range of dates. in the case of the yearly //print style, a range would be something like 'January 2004-December 2004//. //the date header caption style may be changed to always display the primary //or range of dates. in this case, we only want the year to be displayed //so the property is set to Primary this.ultraSchedulePrintDocument1.DateHeaderCaptionStyle = DateHeaderCaptionStyle.Primary; //the "calendarinfo" notes area is a specialized notes area that will print //the Note objects (see UltraCalendarInfo.Notes) associated with the date //range being printed in the page this.ultraSchedulePrintDocument1.IncludeCalendarInfoNotesArea = true; //there are several appearance for controlling the look of the notes areas... //the header appearance affects solely the header area - the area with the //caption "Notes" whereas the NotesAreaAppearance is the appearance for the //entire notes area including the borders and background area containing the //notes header this.ultraSchedulePrintDocument1.NotesAreaHeaderAppearance.BackColor = Color.Black; this.ultraSchedulePrintDocument1.NotesAreaHeaderAppearance.ForeColor = Color.White; this.ultraSchedulePrintDocument1.NotesAreaAppearance.BackColor = Color.LightGray;
Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2