#if FRAMEWORK20
using System;
using System.Collections.Generic;
using System.Text;
namespace DevComponents.Editors.DateTimeAdv
{
///
/// Defines an interface for the DateTime Part interaction.
///
public interface IDateTimePartInput
{
///
/// Gets or sets the date/time part value.
///
int Value { get;set;}
///
/// Gets or sets the minimum value for the date/time part entry.
///
int MinValue { get;set;}
///
/// Gets or sets the maximum value for the date/time part entry.
///
int MaxValue { get;set;}
///
/// Gets the date time part control represents.
///
eDateTimePart Part { get;}
///
/// Gets or sets whether input part is empty.
///
bool IsEmpty { get; set;}
///
/// Reverts to the last input value control held.
///
void UndoInput();
}
}
#endif