PasteRTF
PowerScript function
Description
Pastes rich text data from a string into a DataWindow control,
DataStore object, or RichTextEdit control.
Applies to
DataWindow controls, DataStore objects, and RichTextEdit
controls
Syntax
|
1 |
rtename.PasteRTF ( richtextstring {, band } ) |
|
Argument |
Description |
|---|---|
|
rtename |
The name of the DataWindow control, DataStore object, or |
|
richtextstring |
A string whose value is data with rich text |
|
band (optional) |
A value of the Band enumerated datatype specifying the
The default is the band that contains the insertion |
Return value
Long. Returns -1 if an error occurs. If richtextstring is null,
PasteRTF returns null.
Usage
A DataWindow in the RichText presentation style has only three
bands. There are no summary or trailer bands and there are no group
headers and footers.
Examples
This statement pastes rich text in the string ls_richtext into the
header of the RichTextEdit rte_message:
|
1 2 |
string ls_richtext rte_message.PasteRTF(ls_richtext, Header!) |
See also