|
|
|
|
|
PicOpen (Function) In french: PicOuvre Opens an image in an Image Editor control. sFile is string  // Opens the image picker sFile = fImageSelect("", "", "Select an image...") IF sFile = "" THEN RETURN END  // Open the image in the Image Editor control IF PicOpen(IE_MyEditor, sFile) = False THEN Error(ErrorInfo()) END Syntax
<Result> = PicOpen(<Image Editor control> , <Image> [, <Opening mode>])
<Result>: Boolean - True if the image was opened,
- False otherwise. To get more details on the error, use ErrorInfo with the errMessage constant.
<Image Editor control>: Control name Name of the Image Editor control used to display the image. <Image>: Character string or Image variable Image to display in the Image Editor control. This parameter can be: - a variable of type Image.
- the path of image file.
<Opening mode>: Optional Integer constant Image opening mode:
| | odOptionHidePane | The image is displayed in the image editor in read/write mode and the right pane (that displays the color characteristics) is not displayed by default. | odOptionNone (default value) | The image is displayed in the Image Editor control in read/write mode. | odOptionReadOnly | The image is displayed in read-only mode in the image editor. In this mode, only the display options and the OCR will be accessible. The user will also be able to print and save the document using the "Save as" option. |
Remarks This function is equivalent to the following syntaxes: <Image Editor control> = <Image path> <Image Editor control> = <Image variable> Business / UI classification: UI Code
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|