Vcl.DdeMan.TDdeServerItem.PokeData

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function PokeData(Data: HDdeData): LongInt;

C++

int __fastcall PokeData(NativeUInt Data);

Properties

Type Visibility Source Unit Parent
function public
Vcl.DdeMan.pas
Vcl.DdeMan.hpp
Vcl.DdeMan TDdeServerItem

Description

Processes data that has been poked to the DDE server item by a DDE client.

Call PokeData to inform the DDE server item that the DDE conversation holds data that has been poked from a DDE client. Data is the DDE handle to the poked data.

PokeData does the following:

1Uses the Data handle to obtain the data that was poked.

2Sets the Lines property to the new data value.

3Triggers an OnChange event.

4Sends the new value of the data back to the DDE client.

5Triggers an OnPokeData event.

See Also