Property

Method

Event

 

 

OnImage

Invoked to inform that an image is selected.

Syntax

    void OnImage(
    BSTR src,
    BSTR alt
    );

Parameters

src

[out] URL of the image.

alt

[out] Alt text of the image.

Sample Codes

VBScript

function wec_OnImage(src, alt)
msgbox "OnImage : " + src + ", " + alt
end function