Property

Method

Event

 

 

BeforeFileLoad

Invoked before the file loading starts to indicate the File-Open command is being executed.

Syntax

    void BeforeFileLoad(
    BSTR fpath
    );

Parameters

fpath

[out] URL of the file.

Remarks

This event is not invoked for a file opened during initialization or by method calls.

Sample Codes

VBScript

function wec_BoforeFileLoad(furl)
        msgbox furl + "is being opened."
end function