Click or drag to resize
KaxCalendarColumnHeaderImage Property
Gets or sets the image displayed for the column header element.

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public string ColumnHeaderImage { get; set; }

Property Value

Type: String
The image displayed for the CalendarView column header element in the header cells. The default value is "".
Remarks

This property applies only if the ShowColumnHeaders property is set to true. If ColumnHeaderText is set too, its value is set as an alternative text to the image of the column header.

When using this property, the whole image URL is generated using also the ImagesBaseDir value.

Example:

ShowColumnHeaders="true"
ImagesBaseDir = "Img/"
ColumnHeaderImage = "selector.gif"
complete image URL : "Img/selector.gif"

See Also