Returns the day that matches
the given index of the HighLight Day Collection.
Public Function FindHighLightDay(
ByVal iIndexAsInteger, _
) as String
Parameter
iIndex - the index of highlight day. Start from zero. Return Value Return the highlight day. the format
is YYYYMMDD. (8 character) e.g. 20041131 Example
Visual Basic Syntax icount = Calendar1.GetHighLightDayCount
For i = 0 To icount - 1
colorHighlight =
Calendar1.FindHighLightDayColor(i)
strDay= Calendar1.FindHighLightDay(i)
'Next