次の方法で共有


Informs the host that the scripting engine has begun executing the script code.

Microsoft® Windows® Script Interfaces
IActiveScriptSite::OnEnterScript
 Language Reference
Previous
Next

  HRESULT OnEnterScript(void);

  • Returns S_OK if successful.

The scripting engine must call this method on every entry or reentry into the scripting engine. For example, if the script calls an object that then fires an event handled by the scripting engine, the scripting engine must call IActiveScriptSite::OnEnterScript before executing the event, and must call the IActiveScriptSite::OnLeaveScript method after executing the event but before returning to the object that fired the event. Calls to this method can be nested. Every call to this method requires a corresponding call to IActiveScriptSite::OnLeaveScript.