AccessibleControlEvent

Instances of this class are sent as a result of accessibility clients sending messages to controls asking for detailed information about the implementation of the control instance. Typically, only implementors of custom controls need to listen for this event. <p> Note: The meaning of each field depends on the message that was sent. </p>

@see AccessibleControlListener @see AccessibleControlAdapter @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>

@since 2.0

class AccessibleControlEvent : SWTEventObject {
int childID;
Accessible accessible;
int x;
int y;
int width;
int height;
int detail;
String result;
Object[] children;
}

Constructors

this
this(Object source)

Constructs a new instance of this class.

Members

Functions

toString
String toString()

Returns a string containing a concise, human-readable description of the receiver.

Meta