IDateTimePicker

Mobilize.QualityMate.ControlInterfaces

IDateTimePicker Interface

Defines the basic interactions for DateTimePicker controls.

public interface IDateTimePicker :
Mobilize.QualityMate.ControlInterfaces.Behavior.ITextControl,
Mobilize.QualityMate.ControlInterfaces.IControl,
Mobilize.QualityMate.ControlInterfaces.Behavior.IValidatable

Implements ITextControl, IControl, IValidatable

Methods

IDateTimePicker.ChangeDate(int, int, int) Method

Changes the date value of this control.

void ChangeDate(int year, int month, int day);

Parameters

year System.Int32

The new year value.

month System.Int32

The new month value.

day System.Int32

The new day value.

IDateTimePicker.ChangeDateTime(string) Method

Changes the date and time value of this control.

void ChangeDateTime(string newValue);

Parameters

newValue System.String

The new value for the date and time value of this control.

IDateTimePicker.ChangeDateTime(DateTime) Method

Changes the date and/or time value of this control.

void ChangeDateTime(System.DateTime dateTime);

Parameters

dateTime System.DateTime

The date time to set.

IDateTimePicker.ChangeTime(int, int, int) Method

Changes the time value of this control.

void ChangeTime(int hour, int minute, int second);

Parameters

hour System.Int32

The new hour value.

minute System.Int32

The new minute value.

second System.Int32

The new second value.

Last updated