Click or drag to resize
KaxCalendarNavigationPrevText Property
Gets or sets the text displayed for the previous month navigation control. Will be applied only if there is no image set (see NavigationPrevImage).

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 NavigationPrevText { get; set; }

Property Value

Type: String
The text displayed for the CalendarView previous month navigation cell. The default value is "<".
Remarks

Use the NavigationPrevText property to provide custom text for the previous month navigation element in the title section of KaxCalendar.

Note that the NavigationPrevImage has priority and its value should be set to an empty string in order to be applied the NavigationPrevText 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 NavigationPrevText 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 NavigationPrevImage property is available for this type of functionality.

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

See Also