Show / Hide Table of Contents

    Class DateField

    Date editing View
    Inheritance
    System.Object
    Responder
    View
    TextField
    DateField
    Implements
    System.Collections.IEnumerable
    Inherited Members
    TextField.Used
    TextField.ReadOnly
    TextField.Changed
    TextField.OnLeave()
    TextField.Frame
    TextField.Text
    TextField.Secret
    TextField.CursorPosition
    TextField.PositionCursor()
    TextField.Redraw(Rect)
    TextField.CanFocus
    TextField.SelectedStart
    TextField.SelectedLength
    TextField.SelectedText
    TextField.ClearAllSelection()
    TextField.Copy()
    TextField.Cut()
    TextField.Paste()
    View.Enter
    View.Leave
    View.MouseEnter
    View.MouseLeave
    View.Driver
    View.Subviews
    View.Id
    View.IsCurrentTop
    View.WantMousePositionReports
    View.WantContinuousButtonPressed
    View.GetEnumerator()
    View.LayoutStyle
    View.Bounds
    View.X
    View.Y
    View.Width
    View.Height
    View.SuperView
    View.SetNeedsDisplay()
    View.SetNeedsDisplay(Rect)
    View.ChildNeedsDisplay()
    View.Add(View)
    View.Add(View[])
    View.RemoveAll()
    View.Remove(View)
    View.BringSubviewToFront(View)
    View.SendSubviewToBack(View)
    View.SendSubviewBackwards(View)
    View.BringSubviewForward(View)
    View.Clear()
    View.Clear(Rect)
    View.ScreenToView(Int32, Int32)
    View.ClipToBounds()
    View.SetClip(Rect)
    View.DrawFrame(Rect, Int32, Boolean)
    View.DrawHotString(ustring, Attribute, Attribute)
    View.DrawHotString(ustring, Boolean, ColorScheme)
    View.Move(Int32, Int32)
    View.HasFocus
    View.OnEnter()
    View.Focused
    View.MostFocused
    View.ColorScheme
    View.AddRune(Int32, Int32, Rune)
    View.ClearNeedsDisplay()
    View.SetFocus(View)
    View.KeyPress
    View.ProcessHotKey(KeyEvent)
    View.ProcessColdKey(KeyEvent)
    View.KeyDown
    View.OnKeyDown(KeyEvent)
    View.KeyUp
    View.OnKeyUp(KeyEvent)
    View.EnsureFocus()
    View.FocusFirst()
    View.FocusLast()
    View.FocusPrev()
    View.FocusNext()
    View.LayoutSubviews()
    View.ToString()
    View.OnMouseEnter(MouseEvent)
    View.OnMouseLeave(MouseEvent)
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    System.Object.ReferenceEquals(System.Object, System.Object)
    Namespace: Terminal.Gui
    Assembly: Terminal.Gui.dll
    Syntax
    public class DateField : TextField, IEnumerable
    Remarks
    The DateField View provides date editing functionality with mouse support.

    Constructors

    DateField(DateTime)

    Initializes a new instance of DateField
    Declaration
    public DateField(DateTime date)
    Parameters
    Type Name Description
    System.DateTime date

    DateField(Int32, Int32, DateTime, Boolean)

    Initializes a new instance of DateField at an absolute position and fixed size.
    Declaration
    public DateField(int x, int y, DateTime date, bool isShort = false)
    Parameters
    Type Name Description
    System.Int32 x The x coordinate.
    System.Int32 y The y coordinate.
    System.DateTime date Initial date contents.
    System.Boolean isShort If true, shows only two digits for the year.

    Properties

    Date

    Gets or sets the date of the DateField.
    Declaration
    public DateTime Date { get; set; }
    Property Value
    Type Description
    System.DateTime
    Remarks

    IsShortFormat

    Get or set the data format for the widget.
    Declaration
    public bool IsShortFormat { get; set; }
    Property Value
    Type Description
    System.Boolean

    Methods

    MouseEvent(MouseEvent)

    Declaration
    public override bool MouseEvent(MouseEvent ev)
    Parameters
    Type Name Description
    MouseEvent ev
    Returns
    Type Description
    System.Boolean
    Overrides
    TextField.MouseEvent(MouseEvent)

    ProcessKey(KeyEvent)

    Declaration
    public override bool ProcessKey(KeyEvent kb)
    Parameters
    Type Name Description
    KeyEvent kb
    Returns
    Type Description
    System.Boolean
    Overrides
    TextField.ProcessKey(KeyEvent)

    Implements

    System.Collections.IEnumerable
    Back to top Generated by DocFX