| KaxCalendarRowHeaderImage Property  | 
          
        
        
        
            Gets or sets the image displayed for the row 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 RowHeaderImage { get; set; }Public Property RowHeaderImage As String
	Get
	Set
public:
property String^ RowHeaderImage {
	String^ get ();
	void set (String^ value);
}member RowHeaderImage : string with get, set
Property Value
Type: 
String
            The image displayed for the 
CalendarView row header element. The default value is 
"".
            
RemarksThis property applies only if the ShowRowHeaders property is
                set to true. If RowHeaderText is set too, its
                value is set as an alternative text to the image of the row header.
When using this property, the whole image URL is generated using also the
                ImagesBaseDir
                value.
Example:
ShowRowHeaders = "true"
ImagesBaseDir = "Img/"
RowHeaderImage = "selector.gif"
complete image URL : "Img/selector.gif"
See Also