Service.onObjectUpdated event

The onObjectUpdated event occurs after an object has been updated on this Service object.

Syntax

Service.onObjectUpdated(
  wpdObject
)

Parameters

wpdObject

The WPDObject that was updated.

Return value

This event does not return a value.

Examples

The following code shows the handler-function syntax for the onObjectUpdated event.

function HandlerFunction(wpdObject)
{

   // Code to handle the updated object.

}

// Set the event handler.
Service.onObjectUpdated = HandlerFunction;

Requirements

Minimum supported client
Windows 7 [desktop apps only]
Minimum supported server
Windows Server 2008 R2 [desktop apps only]

See also

Service Object

WPDObject