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
Itemread/writeILongPreferences
Provides access to the specified preference long integer.
IDL |
[propget] HRESULT Item(
|
---|---|
.NET | Int32
get_Item( |
index
The index of the preference item of interest. The index can be either a numeric value from the ConfigLong enumeration, or a string version of the value (for example, “clTopLevelFilesOnly”). You can use the latter from scripting languages that do not have access to the symbolic enumeration constants.
Methods
SetILongPreferences
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(
|
---|---|
.NET | void Set( |
index
The index of the preference item of interest. The index can be either a numeric value from the ConfigLong enumeration, or a string version of the value (for example, “clTopLevelFilesOnly”). You can use the latter from scripting languages that do not have access to the symbolic enumeration constants.newValue
The new value of the preference item.