KaxCalendarColumnHeaderImage Property |
Gets or sets the image displayed for the column header element.
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntaxpublic string ColumnHeaderImage { get; set; }
Public Property ColumnHeaderImage As String
Get
Set
public:
property String^ ColumnHeaderImage {
String^ get ();
void set (String^ value);
}
member ColumnHeaderImage : string with get, set
Property Value
Type:
String
The image displayed for the
CalendarView column header element in the
header cells. The default value is
"".
RemarksThis 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