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 DayRender Event

[To be supplied.]

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

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

Parameters

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

See Also

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