Calendar.CalendarEntryText Property

Definition

Gets or sets the string used on CHTML and WML devices to enter the Calendar control. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

public:
 property System::String ^ CalendarEntryText { System::String ^ get(); void set(System::String ^ value); };
[System.ComponentModel.Bindable(true)]
public string CalendarEntryText { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.CalendarEntryText : string with get, set
Public Property CalendarEntryText As String

Property Value

The string used on CHTML and WML devices to enter the Calendar.

Attributes

Examples

The following code example demonstrates how to use the CalendarEntryText property to set the text that is displayed to the user. This example is part of a larger code sample for the Calendar overview.

Calendar1.CalendarEntryText = "Your birthdate";
Calendar1.CalendarEntryText = "Your birthdate"

Remarks

When this property is set to null, the default is the localized string (for example, "Calendar").

Applies to

See also