|
|
|
|
|
<Image Editor>.Open (Function) In french: <Éditeur d'images>.Ouvre Opens an image in an Image Editor control. sFile is string
sFile = fImageSelect("", "", "Select an image...")
IF sFile = "" THEN
RETURN
END
IF IE_MyEditor.Open(sFile) = False THEN
Error(ErrorInfo())
END
Syntax
<Result> = <Image Editor control>.Open(<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 correspond to: - 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>
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|