InsertPicture PowerScript function
Description
Inserts an image at the insertion point in a RichTextEdit
control.
Controls
RichTextEdit controls
Syntax
|
1 |
<span>rtename</span>.<span>InsertPicture</span> ( <span>filename</span>{, <span>format</span> } ) |
|
Argument |
Description |
|---|---|
|
rtename |
The name of the RichTextEdit control |
|
filename |
A string whose value is the name of the |
|
format |
An integer whose value determines the
|
Return Values
Integer. Returns 1 if it succeeds. Returns -2 if the compression
format of a .tif file is not supported and
-1 if a different error occurs. If filename is null, InsertPicture returns null.
Usage
If there is a selection, InsertPicture inserts
the image at the beginning of the selection. The image and the selection
remain selected. The following file types are supported: .bmp,
.wmf, .jpeg, .png,
and .gif. The .tif file
type is also supported if it uses the LZW compression format.
Examples
This example inserts a PNG file at the insertion
point in the RichTextEdit control rte_1.
The PNG file will be saved in the RTF file in WMF format:
|
1 |
integer li_rtn |
|
1 |
li_rtn = rte_1.<span>InsertPicture</span>("c:windowsearth.png") |
This example inserts a JPG file at the insertion
point in the RichTextEdit control rte_1.
The JPG file will be saved in the RTF file in JPG format:
|
1 |
integer li_rtn |
|
1 |
li_rtn = rte_1.<span>InsertPicture</span>("c:windowsearth.jpg", 4) |