Vcl.DdeMan.TDdeServerItem.OnPokeData

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnPokeData: TNotifyEvent read FOnPokeData write FOnPokeData;

C++

__property System::Classes::TNotifyEvent OnPokeData = {read=FOnPokeData, write=FOnPokeData};

Properties

Type Visibility Source Unit Parent
event published
Vcl.DdeMan.pas
Vcl.DdeMan.hpp
Vcl.DdeMan TDdeServerItem

Description

Occurs after a DDE client changes the value of the Lines property.

Write an OnPokeData event handler to take specific action when the DDE client pokes data to this DDE server item. The new value for the item can be found by reading the Lines or Text property.

When a DDE client pokes data to a DDE server items, the PokeData method is called. PokeData causes the following events.

1First, the new value is assigned to the Lines (Text) property.

2An OnChange event occurs.

3The new value is sent back to the DDE client.

4An OnPokeData event occurs.

See Also