Vcl.DdeMan.TDdeClientConv.FormatChars

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property FormatChars: Boolean read FFormatChars write SetFormatChars default False;

C++

__property bool FormatChars = {read=FFormatChars, write=SetFormatChars, default=0};

Properties

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

Description

Determines if certain characters are filtered out of text data transferred from a DDE server application.

Use FormatChars with DDE server applications that transfer backspaces, linefeeds, carriage returns, and tabs with the text data. These formatting characters can cause incorrect spacing, line breaks, or characters in the DDE client data. To prevent the formatting characters from interfering with the formatting of the client data, set FormatChars to false. To include the formatting characters sent by the DDE server, set FormatChars to true.

See Also