RadCalendar for ASP.NET

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


Gets or sets the text displayed for the next month navigation control. Will be applied if there is no image set (see NavigationNextImage).   

 

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

Syntax

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

Return Value

The text displayed for the CalendarView next month navigation cell. The default value is ">".

Remarks

Use the NavigationNextText property to provide custom text for the next month navigation element in the title section of RadCalendar.

Note that the NavigationNextImage has priority and its value should be set to an empty string in order to be applied the NavigationNextText value.

This property does not automatically encode to HTML. You need to convert special characters to the appropriate HTML value, unless you want the characters to be treated as HTML. For example, to explicitly display the greater than symbol (>), you must use the value >.

Because this property does not automatically encode to HTML, it is possible to specify an HTML tag for the NavigationNextText property. For example, if you want to display an image for the next month navigation control, you can set this property to an expression that contains an <img> element. However note that NavigationNextImage property is available for this type of functionality.

This property applies only if the EnableNavigation property is set to true.

Requirements

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

See Also