C1DatePicker Control Help > C1DatePicker Task-Based Help > Allowing Null Values |
By default, the C1DatePicker control doesn't allow users to enter null values, but you can force the control to accept a null value by setting the C1DatePicker.AllowNull property to True. In this topic, you will learn how to set the AllowNull property to True in the designer, in XAML, and in code.
In the Designer
Complete the following steps:
In XAML
To allow null values, place AllowNull="True" within the <c1:C1DatePicker> tags so that the markup resembles the following:
<c1:C1DatePicker AllowNull="True"/>
In Code
Complete the following steps:
Visual Basic |
Copy Code
|
---|---|
C1DatePicker1.AllowNull = True
|
C# |
Copy Code
|
---|---|
c1DatePicker1.AllowNull = true;
|