Skip to content

DXDateEdit

DevXpress DateEdit.

UI element class: DevExpress.XtraEditors.Controls.DateEditCalendarBase

Extends ManagedObject

Extends SeSSimulatedObject

Behavior Pattern: DXDateEditBehavior

Property Summary

Property Description Getter Setter
Month Current month displayed by the date picker. GetMonth

Action Summary

Action Description
DoNextMonth Clicks on 'Next Month' selector.
DoPrevMonth Clicks on 'Previous Month' selector.
DoSelectDate Selects specific date in the date picker.

Property Detail

Month

Current month displayed by the date picker.

Type: string|number

Accessors: GetMonth

value = SeS('SomeDXDateEdit').GetMonth()

Action Detail

DoNextMonth

Clicks on 'Next Month' selector.

SeS('SomeDXDateEdit').DoNextMonth()

Returns:

boolean: 'true' if success, 'false' otherwise

DoPrevMonth

Clicks on 'Previous Month' selector.

SeS('SomeDXDateEdit').DoPrevMonth()

Returns:

boolean: 'true' if success, 'false' otherwise

DoSelectDate

Selects specific date in the date picker.

SeS('SomeDXDateEdit').DoSelectDate(day, month, year)

Parameters:

Name Type Description
day number Day to set
month number Month to set
year number Year to set

Returns:

boolean: 'true' if success, 'false' otherwise