#if FRAMEWORK20 using System; using System.Collections.Generic; using System.Text; namespace DevComponents.Editors.DateTimeAdv { public class NumericMinuteInput : VisualIntegerInput, IDateTimePartInput { #region Private Variables #endregion #region Events #endregion #region Constructor /// /// Initializes a new instance of the NumericMinuteInput class. /// public NumericMinuteInput() { this.MinValue = 0; this.MaxValue = 59; } #endregion #region Internal Implementation #endregion #region IDateTimePartInput Members eDateTimePart IDateTimePartInput.Part { get { return eDateTimePart.Minute; } } #endregion } } #endif