Vcl.Tabs.TScroller.OnClick

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnClick: TNotifyEvent read FOnClick write FOnClick;

C++

__property System::Classes::TNotifyEvent OnClick = {read=FOnClick, write=FOnClick};

Properties

Type Visibility Source Unit Parent
event published
Vcl.Tabs.pas
Vcl.Tabs.hpp
Vcl.Tabs TScroller

Description

OnClick occurs after the Position property has been updated in response to the user clicking one of the arrow buttons.

Write an OnClick event handler to implement the scrolling action of the object that uses the TScroller to control scrolling. When the user clicks one of the arrow buttons, the Position gets updated by Change (unless the Max or Min value is hit), and then an OnClick event occurs.

See Also