IBX.IBEvents.TIBEvents.Events

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Events: TStrings read FUniEvents write SetEvents;

C++

__property System::Classes::TStrings* Events = {read=FUniEvents, write=SetEvents};

Properties

Type Visibility Source Unit Parent
property published
IBX.IBEvents.pas
IBX.IBEvents.hpp
IBX.IBEvents TIBEvents

Description

Specifies the events to which TIBEvents responds.

Use the Events property to list events to which the IBEvents component responds.

To add an event use code similar to the following:


Delphi: IBEvents.Events.Add('EVENT_NAME') C++: IBEvents->Events->Add("EVENT_NAME")


Note: Event names are case-sensitive.