Vcl.DdeMan.TDdeServerConv.OnClose

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnClose: TNotifyEvent read FOnClose write FOnClose;

C++

__property System::Classes::TNotifyEvent OnClose = {read=FOnClose, write=FOnClose};

Properties

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

Description

Occurs when the DDE client terminates the DDE conversation.

Write an OnClose event handler to take specific action when the DDE conversation ends. The DDE conversation will end if the client terminates the conversation. It does not end if the TDdeServerConv object is destroyed. In that case, the DDE server items simply remove themselves from the DDE server conversation, and continue the link to the DDE client.

The Sender parameter is the DDE server conversation, not the DDE client.

See Also