DayRenderEventArgs::Cell Property

 

Gets the TableCell object that represents the cell being rendered in the Calendar control.

Namespace:   System.Web.UI.WebControls
Assembly:  System.Web (in System.Web.dll)

public:
property TableCell^ Cell {
	TableCell^ get();
}

Property Value

Type: System.Web.UI.WebControls::TableCell^

The TableCell that represents the cell being rendered in the Calendar.

Use the Cell property to programmatically control the cell being rendered in the Calendar control.

You can customize the contents of a cell by dynamically adding controls to the Control::Controls collection of the Cell property.

System_CAPS_noteNote

Because the DayRender event is raised while the Calendar control is being rendered, you cannot add a control that can also raise an event, such as LinkButton. You can add only static controls, such as LiteralControl, Label, Image, and HyperLink.

The following code example demonstrates how to use the Cell property to programmatically change the background color of the days in the displayed month to yellow. It also demonstrates how to customize the contents of a cell by adding a System.Web.UI::LiteralControl control to the Control::Controls collection of the Cell property.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 1.1
Return to top
Show: