Vcl.ComCtrls.TDateTimePicker.OnUserInput

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnUserInput: TDTParseInputEvent read FOnUserInput write FOnUserInput;

C++

__property TDTParseInputEvent OnUserInput = {read=FOnUserInput, write=FOnUserInput};

Properties

Type Visibility Source Unit Parent
event published
Vcl.ComCtrls.pas
Vcl.ComCtrls.hpp
Vcl.ComCtrls TDateTimePicker

Description

Occurs when the user types directly into the component's edit box.

This event occurs only if ParseInput is set to True. Write an OnUserInput event handler implementing special processing that needs to occur when the user types directly into the TDateTimePicker (rather than selecting with the drop-down calendar or scroll arrows).

OnUserInput is an event handler of type Vcl.ComCtrls.TDTParseInputEvent.

See Also