:: com :: sun :: star :: inspection ::

enum InteractiveSelectionResult

Values
Cancelled The interactive selection of a property value was canceled.  
Success The interactive selection of a property value succeeded, and the new property value chosen by the user has already been set at the inspected component.  
ObtainedValue The interactive selection of a property value succeeded, a new property value has been obtained, but not yet set at the inspected component.  
Pending The interactive selection of a property value is still pending.  
Values' Details
Cancelled
Cancelled,
Description
The interactive selection of a property value was canceled.
Success
Success,
Description
The interactive selection of a property value succeeded, and the new property value chosen by the user has already been set at the inspected component.
ObtainedValue
ObtainedValue,
Description
The interactive selection of a property value succeeded, a new property value has been obtained, but not yet set at the inspected component.

In this case, the obtained value is passed to the caller of XPropertyHandler::onInteractivePropertySelection(), which is responsible for forwarding this value to the inspected component.

Pending
Pending,
Description
The interactive selection of a property value is still pending.

This is usually used when this selection involves non-modal user interface.

Top of Page