Class DateTimeSelector
Definition
- Namespace:
- Elm
Sharp
- Assembly:
- ElmSharp.dll
It inherits Layout. The DateTimeSelector is a widget to display and input the date & time values. This widget displays the date and time as per the system's locale settings (Date includes Day, Month & Year) along with the defined separators and time including hour, minute & AM/PM fields. Separator for the AM/PM field is ignored.
C#
Copy
public class DateTimeSelector : Layout, IAccessibleObject
- Inheritance
- Derived
- Implements
Constructors
DateTimeSelector()
Creates and initializes a new instance of the DateTimeSelector class.
Declaration
C#
Copy
protected DateTimeSelector()
DateTimeSelector(EvasObject)
Creates and initializes a new instance of the DateTimeSelector class.
Declaration
C#
Copy
public DateTimeSelector(EvasObject parent)
Parameters
Type | Name | Description |
---|---|---|
Evas |
parent | The parent is a given container, which will be attached by the DateTimeSelector
as a child. It's Evas |
Properties
Declaration
C#
Copy
public DateTime DateTime { get; set; }
Property Value
Type | Description |
---|---|
System. |
Declaration
C#
Copy
public string Format { get; set; }
Property Value
Type | Description |
---|---|
string |
Remarks
Format is a combination of the allowed LIBC date format specifiers like: "%b %d, %Y %I : %M %p".
Declaration
C#
Copy
public DateTime MaximumDateTime { get; set; }
Property Value
Type | Description |
---|---|
System. |
Declaration
C#
Copy
public DateTime MinimumDateTime { get; set; }
Property Value
Type | Description |
---|---|
System. |
Methods
Declaration
C#
Copy
protected override IntPtr CreateHandle(EvasObject parent)
Parameters
Type | Name | Description |
---|---|---|
Evas |
parent | Parent EvasObject. |
Returns
Type | Description |
---|---|
System. |
Handle IntPtr. |
Overrides
Declaration
C#
Copy
public bool IsFieldVisible(DateTimeFieldType type)
Parameters
Type | Name | Description |
---|---|---|
Date |
type | Enumeration for Date |
Returns
Type | Description |
---|---|
bool | The field is visible or not. Type is bool. If visible, return true. |
Declaration
C#
Copy
protected override void OnRealized()
Overrides
Declaration
C#
Copy
public void SetFieldLimit(DateTimeFieldType type, int minimum, int maximum)
Parameters
Type | Name | Description |
---|---|---|
Date |
type | Enumeration for Date |
int | minimum | The minimum limit. |
int | maximum | The maximum limit. |
Declaration
C#
Copy
public void SetFieldVisible(DateTimeFieldType type, bool visible)
Parameters
Type | Name | Description |
---|---|---|
Date |
type | Enumeration for Date |
bool | visible | When set as true, the field type is visible. |
Events
Declaration
C#
Copy
public event EventHandler<DateChangedEventArgs> DateTimeChanged
Event Type
Type | Description |
---|---|
System.EventHandler<TEventArgs><Date |