IAccessible2 API  Version 1.3
Public Member Functions | List of all members
IAccessibleValue Interface Reference

This interface gives access to a single numerical value. More...

import "AccessibleValue.idl";

Inheritance diagram for IAccessibleValue:

Public Member Functions

HRESULT currentValue ([out, retval] VARIANT *currentValue)
 Returns the value of this object as a number. More...
 
HRESULT setCurrentValue ([in] VARIANT value)
 Sets the value of this object to the given number. More...
 
HRESULT maximumValue ([out, retval] VARIANT *maximumValue)
 Returns the maximal value that can be represented by this object. More...
 
HRESULT minimumValue ([out, retval] VARIANT *minimumValue)
 Returns the minimal value that can be represented by this object. More...
 

Detailed Description

This interface gives access to a single numerical value.

The IAccessibleValue interface represents a single numerical value and should be implemented by any class that supports numerical value like progress bars and spin boxes. This interface lets you access the value and its upper and lower bounds.

Member Function Documentation

HRESULT IAccessibleValue::currentValue ( [out, retval] VARIANT *  currentValue)
get

Returns the value of this object as a number.

The exact return type is implementation dependent. Typical types are long and double.

Parameters
[out]currentValueReturns the current value represented by this object. See the section about VARIANTs for additional information.
Return values
S_OK
S_FALSEif there is nothing to return, [out] value is a VARIANT with vt = VT_EMPTY
HRESULT IAccessibleValue::maximumValue ( [out, retval] VARIANT *  maximumValue)
get

Returns the maximal value that can be represented by this object.

The type of the returned value is implementation dependent. It does not have to be the same type as that returned by method IAccessibleValue::currentValue.

Parameters
[out]maximumValueReturns the maximal value in an implementation dependent type. If this object has no upper bound then an empty object is returned. See the section about VARIANTs for additional information.
Return values
S_OK
S_FALSEif there is nothing to return, [out] value is a VARIANT with vt = VT_EMPTY
HRESULT IAccessibleValue::minimumValue ( [out, retval] VARIANT *  minimumValue)
get

Returns the minimal value that can be represented by this object.

The type of the returned value is implementation dependent. It does not have to be the same type as that returned by method IAccessibleValue::currentValue.

Parameters
[out]minimumValueReturns the minimal value in an implementation dependent type. If this object has no lower bound then an empty object is returned. See the section about VARIANTs for additional information.
Return values
S_OK
S_FALSEif there is nothing to return, [out] value is a VARIANT with vt = VT_EMPTY
HRESULT IAccessibleValue::setCurrentValue ( [in] VARIANT  value)

Sets the value of this object to the given number.

The argument is clipped to the valid interval whose upper and lower bounds are returned by the methods IAccessibleValue::maximumValue and IAccessibleValue::minimumValue, i.e. if it is lower than the minimum value the new value will be the minimum and if it is greater than the maximum then the new value will be the maximum.

Parameters
[in]valueThe new value represented by this object. The set of admissible types for this argument is implementation dependent.
Return values
S_OK

The documentation for this interface was generated from the following file:
Generated on Wed Jul 10 2013 09:47:26 for IAccessible2 API Version 1.3 by  doxygen 1.8.3.1