DoublePreferences Object

On this page:

Description

This object provides access to Merge preferences that are represented by floating point numbers. Use the (default) Item property to get and set these preferences.

Properties

Item read/write, IDoublePreferences

Provides access to the specified preference double.

IDL [propget] HRESULT Item(
    [in] VARIANT index,
    [out, retval] double* pValue)
[propput] HRESULT Item(
    [in] VARIANT index,
    [in] double newValue)
.NET Double get_Item(
    Object index)
void set_Item(
    Object index, Double newValue)

Methods

Set IDoublePreferences

Sets the value of the specified preference item. This method is provided for use by scripting languages that are unable to use the Item property.

IDL HRESULT Set(
    [in] VARIANT index,
    [in] double newValue)
.NET void Set(
    Object index,
    Double newValue)