|
TCustomRichView.SaveText, SaveTextW |
Top Previous Next |
|
The methods export document to ANSI (SaveText) or Unicode (SaveTextW) text file. function SaveText(const FileName: String; LineWidth: Integer; CodePage: Cardinal=CP_ACP): Boolean; function SaveTextW(const FileName: String; LineWidth: Integer): Boolean; Parameters: FileName – output file name. LineWidth is used for saving breaks (they are saved as LineWidth '-' characters)
SaveText: text of Unicode styles is converted using the CodePage parameter (or, if CodePage=CP_ACP, using TRVStyle.DefCodePage). SaveTextW: text of ANSI styles is converted basing on its character sets (if Charset=DEFAULT_CHARSET, it is converted using TRVStyle.DefCodePage).
Return value: "successful saving?"
See also methods: ▪SaveTextToStream, SaveTextToStreamW; See also events: See also: |