PasteRTF method (DataWindows)
Description
Pastes rich text data from a string into a DataWindow control
or DataStore object.
Controls
DataWindow type |
Method applies to |
---|---|
PowerBuilder |
DataWindow control, DataStore object |
Syntax
[PowerBuilder]
1 |
long <span>rtename</span>.<span>PasteRTF</span> ( string <span>richtextstring</span>, { Band <span>band</span> } |
Argument |
Description |
---|---|
rtename |
A reference to a DataWindow control or |
richtextstring |
A string whose value is data with rich |
band |
A value specifying the band into which The default is the band that contains the insertion point. |
Return Values
Returns -1 if an error occurs. If richtextstring is
null, PasteRTF returns null.
Usage
A DataWindow in the RTE presentation style has only three
bands. There are no summary or trailer bands and there are no group
headers and footers.
You can use the same syntax with any PowerBuilder RichTextEdit
control. See PasteRTF in the PowerScript
Reference.
Examples
This statement pastes rich text in the string ls_richtext
into the header of the RichTextEdit rte_message:
1 |
string ls_richtext |
1 |
rte_message.<span>PasteRTF</span>(ls_richtext, Header!) |