Intersoft ClientUI Documentation
DisplayDateEnd Property



Gets or sets the last date to display.
Syntax
<CategoryAttribute("Common Properties")>
<TypeConverterAttribute("Intersoft.Client.Framework.DateTimeTypeConverter, Intersoft.Client.Framework, Version=3.0.5000.1, Culture=neutral, PublicKeyToken=c3d9b11444163e76")>
Public Property DisplayDateEnd As Nullable(Of Date)
Dim instance As UXCalendar
Dim value As Nullable(Of Date)
 
instance.DisplayDateEnd = value
 
value = instance.DisplayDateEnd
[CategoryAttribute("Common Properties")]
[TypeConverterAttribute("Intersoft.Client.Framework.DateTimeTypeConverter, Intersoft.Client.Framework, Version=3.0.5000.1, Culture=neutral, PublicKeyToken=c3d9b11444163e76")]
public Nullable<DateTime> DisplayDateEnd {get; set;}
[CategoryAttribute("Common Properties")]
[TypeConverterAttribute("Intersoft.Client.Framework.DateTimeTypeConverter, Intersoft.Client.Framework, Version=3.0.5000.1, Culture=neutral, PublicKeyToken=c3d9b11444163e76")]
public:
property Nullable<DateTime> DisplayDateEnd {
   Nullable<DateTime> get();
   void set (    Nullable<DateTime> value);
}
Remarks

The range of dates displayed is governed by the DisplayDateStart and DisplayDateEnd properties. If DisplayMode is Year or Decade, only months or years that contain displayable dates will be displayed.

The following example shows UXCalendar with display range starts from January 2010 to December 2011.

XAML
Copy Code
<Intersoft:UXCalendar x:Name="UXCalendar1" DisplayDate="1/1/2010"     DisplayDateStart="1/1/2010" DisplayDateEnd="12/31/2011"/>    

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

UXCalendar Class
UXCalendar Members

Concepts

UXCalendar

Send Feedback