NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Calendar VisibleMonthChanged Event

[To be supplied.]

The following declaration shows the syntax for a method that handles the VisibleMonthChanged event.

[Visual Basic]
Protected Sub CalendarName_VisibleMonthChanged( _
   ByVal sender As Object, _
   ByVal e As MonthChangedEventArgs _
)
[C#]
protected void CalendarName_VisibleMonthChanged(
   object sender,
   MonthChangedEventArgs e
);
[C++]
protected: void CalendarName_VisibleMonthChanged(
   Object* sender,
   MonthChangedEventArgs* e
);
[JScript]
protected CalendarName_VisibleMonthChanged(
   sender : Object,
   e : MonthChangedEventArgs
);

Parameters

sender
The source of the event.
e
A MonthChangedEventArgs that contains the event data. The following MonthChangedEventArgs properties provide information specific to this event.
Property Description
NewDate
[To be supplied.]
PreviousDate
[To be supplied.]

See Also

Calendar Class | Calendar MembersTopic | System.Web.UI.WebControls Namespace