<< Click to display table of contents >> TCustomRichView.SaveText, SaveTextW |
The methods export document to ANSI (SaveText) or Unicode (SaveTextW) text file.
function SaveText(const FileName: TRVUnicodeString;
LineWidth: Integer; CodePage: Cardinal=CP_ACP): Boolean;
function SaveTextW(const FileName: TRVUnicodeString;
LineWidth: Integer): Boolean;
(changed in version 18)
Parameters:
FileName – output file name.
LineWidth is used for saving breaks (they are saved as LineWidth '-' characters)
Unicode notes:.
Internally, text is stored as Unicode. SaveText converts Unicode to ANSI using CodePage parameter. If CodePage=CP_ACP, Style.DefCodePage is used instead.
Return value: "successful saving?"
See also methods:
▪SaveTextToStream, SaveTextToStreamW;
See also events:
See also: