WiseMo Guest Component API
Properties | List of all members
IWGuestEventParam Interface Reference

C++ More...

import"WGuest.idl";

Inheritance diagram for IWGuestEventParam:
WGuestEventParam

Properties

VARIANT_BOOL Handled [get, set]
 
VARIANT_BOOL Canceled [get, set]
 

Detailed Description

C++

Auxiliary parameter interface for IWGuestX events.

This is internal interface and cannot be created via CoCreateInstance() function. Scripting languages can change Handled property provided in this interface to indicate that an event was handled successfully and default WGuestX action should be suppressed.

Example of using this property from JavaScript language:

function wguestx_OnLoginPassword(reason, eventparam)
{
wguestx.SendLoginPassword("1");
eventparam.Handled = 1; // Set event handled
}

Property Documentation

VARIANT_BOOL Canceled
getsetproperty

Indicates that an action should be canceled.

Event handler can set this property to true to indicate that processing should not continue.

VARIANT_BOOL Handled
getsetproperty

Indicates that an event has been handled by an application.

Event handler can set this property to true to suppress default WGuestX action.


The documentation for this interface was generated from the following file: