RadCalendar for ASP.NET

RadCalendar Send comments on this topic.
NavigationNextImage Property
See Also 
Telerik.WebControls Namespace > RadCalendar Class : NavigationNextImage Property


Gets or sets the name of the image that is displayed for the next month navigation control.   

 

Namespace: Telerik.WebControls
Assembly: RadCalendar (in RadCalendar.dll)

Syntax

Visual Basic (Declaration) 
Public Property NavigationNextImage As String
Visual Basic (Usage)Copy Code
Dim instance As RadCalendar
Dim value As String
 
instance.NavigationNextImage = value
 
value = instance.NavigationNextImage
C# 
public string NavigationNextImage {get; set;}

Remarks

When using this property, the whole image URL is generated using also the ImagesBaseDir (if no skin is applied) or the SkinPath (if skin is applied) properties values.


Example when skin is NOT defined:
ImagesBaseDir = "Img/"
RowSelectorImage = "nav.gif"
complete image URL : "Img/nav.gif"

Example when skin is defined:
SkinPath = "RadControls/Calendar/Skins/"
RowSelectorImage = "nav.gif"
complete image URL : "RadControls/Calendar/Skins/nav.gif"

Requirements

Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family

See Also