English | 日本語
Home > Merge > Merge for Windows > Documentation Contents > LongPreferences Object

LongPreferences Object

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

Properties (implemented by interface ILongPreferences)

Item

IDL [propget] HRESULT Item([in] VARIANT index, [out, retval] long* pValue)
[propput] HRESULT Item([in] VARIANT index, [in] long newValue)
.NET Int32 get_Item(Object index)
void set_Item(Object index, Int32 newValue)
VB6 Item(index As Variant) As Long

Provides access to the specified preference long integer.

The property is read/write.

Arguments

Methods (implemented by interface ILongPreferences)

Set

IDL HRESULT Set([in] VARIANT index, [in] long newValue)
.NET void Set(Object index, Int32 newValue)
VB6 Set(index As Variant, newValue As Long)

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.

Arguments


Related topics