Packages
 In this topic

*Methods

 

Packages   PreviousThis Package
Package com.ms.ui   Previous This
Package

 


Interface IWinEvent

public interface IWinEvent
{
  // Methods
  public Object getObject(int id);
  public void notify(int event, Object obj);
}

This interface defines methods associated with a window event class. The methods allow specific types of windowing events to be reported to the container. By using the flags defined in UIWinEvent, a variety of events can be tracked and managed by the container.

Also see com.ms.ui.UIWinEvent

Methods

getObject

public Object getObject(int id);

Retrieves an object based on the object's ID.

Return Value:

Returns the object whose identification is id.

ParameterDescription
id The ID of the object to find.

notify

public void notify(int event, Object obj);

Notifies the object when an event occurs. For example, notification could be sent to the parent when a child changed its location.

Return Value:

No return value.

ParameterDescription
event The event to send.
obj The object to be notified.

upnrm.gif © 1998 Microsoft Corporation. All rights reserved. Terms of use.