Skip to main content

Class Date

Text display menu Date input type

Assembly: TextDisplayMenu.dll​
View Source​
Declaration
public class Date : InputBase, IMenuInputItem, IPage

Inheritance: System.Object -> Meadow.Foundation.Displays.UI.InputTypes.InputBase

Implements:
Meadow.Foundation.Displays.UI.IMenuInputItem

Methods​

GetInput(string, object)​

Get input from user

View Source​
Declaration
public override void GetInput(string itemID, object currentValue)
Parameters​
TypeNameDescription
System.StringitemIDid of the menu item
System.ObjectcurrentValuecurrent value of the menu item

Previous()​

Send a Previous input to the item

View Source​
Declaration
public override bool Previous()
Returns​

System.Boolean: true### Next() Send a Next input to the item

View Source​
Declaration
public override bool Next()
Returns​

System.Boolean: true### Select() Send a Select input to the item

View Source​
Declaration
public override bool Select()
Returns​

System.Boolean: true### Back() Send a Back input to the item

View Source​
Declaration
public override bool Back()
Returns​

System.Boolean: true### ParseValue(object) Parse the current value

View Source​
Declaration
protected override void ParseValue(object value)
Parameters​
TypeNameDescription
System.ObjectvalueThe value to parse as a string

Events​

ValueChanged​

Raised when the date value changes

View Source​
Declaration
public override event ValueChangedHandler ValueChanged
Event Type​

Meadow.Foundation.Displays.UI.ValueChangedHandler

Implements​