ResultText Property
The merged result as a string.
property ResultText: string;
Description
Read the ResultText property after calling the Merge method to read the result of the merge process. The MergeResult property has to be set to msString before calling Merge for the result to be available through the ResultText property.
Example
DataMerge.SourceText := memo1.text;
DataMerge.MergeResult := msString;
DataMerge.Merge;
memo1.text := DataMerge.ResultText;
See Also