Vcl.DdeMan.TDdeClientItem.Lines

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Lines: TStrings read FLines write SetLines;

C++

__property System::Classes::TStrings* Lines = {read=FLines, write=SetLines};

Properties

Type Visibility Source Unit Parent
property published
Vcl.DdeMan.pas
Vcl.DdeMan.hpp
Vcl.DdeMan TDdeClientItem

Description

Contains the text data to exchange in a DDE conversation.

Read Lines to get the text that is updated by the DDE server application. Lines is updated automatically by the DDE server. When Lines is changed by the server, an OnChange event occurs.

Set the Lines property to poke data to the DDE server.

Lines corresponds to the Text property. Whenever the value of Lines or Text is updated, the other is also changed so that the first line of Lines is always equal to Text.

Note: Lines of data can also be sent to the DDE server by calling the PokeDataLines method of the DDE client conversation.

See Also