

| Type | Description | |||
| PatternEnum | A PatternEnum expression that indicates the pattern to fill non working days. |

The following VB sample draws non-working days using the exPatternShadow brush:
With CalendarCombo1
.NonworkingDaysPattern = exPatternShadow
End WithThe following C++ sample draws non-working days using the exPatternShadow brush:
m_calendarcombo.SetNonworkingDaysPattern( 3 /*exPatternShadow*/ );
The following VB.NET sample draws non-working days using the exPatternShadow brush:
With AxCalendarCombo1
.NonworkingDaysPattern = EXCALENDARLib.PatternEnum.exPatternShadow
End WithThe following C# sample draws non-working days using the exPatternShadow brush:
axCalendarCombo1.NonworkingDaysPattern = EXCALENDARLib.PatternEnum.exPatternShadow
The following VFP sample draws non-working days using the exPatternShadow brush:
with thisform.CalendarCombo1 .NonworkingDaysPattern = 3 endwith