Vcl.ComCtrls.TCustomUpDown.Click

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure Click(Button: TUDBtnType); reintroduce; dynamic;

C++

HIDESBASEDYNAMIC void __fastcall Click(TUDBtnType Button);

Properties

Type Visibility Source Unit Parent
procedure
function
protected
Vcl.ComCtrls.pas
Vcl.ComCtrls.hpp
Vcl.ComCtrls TCustomUpDown

Description

Generates an OnClick event.

Click is called automatically when the user clicks an arrow button or presses an Up or Down arrow key. Override this method to specify special processing that should occur before the OnClick event handler executes, or to block the OnClick event.

The Button parameter specifies which button was clicked: btNext refers to the Up or Right arrow, and btPrev refers to the Down or Left arrow.

See Also