PreferenceBase AddPreference T  Method TIBCO Spotfire 6.0 API Reference
Call this method (in the constructor of your concrete preference class implementation) to add a new property to your preference class.

Namespace: Spotfire.Dxp.Framework.Preferences
Assembly: Spotfire.Dxp.Framework (in Spotfire.Dxp.Framework.dll) Version: 13.19.7018.3940 (13.19.7018.3940)
Syntax

protected PreferenceProperty<T> AddPreference<T>(
	PreferenceProperty<T> property
)

Parameters

property
Type: Spotfire.Dxp.Framework.Preferences PreferenceProperty T 
The preference property to add.
Type Parameters

T

Return Value

Type: PreferenceProperty T 
The property that was added. Use the return value of this method to assign a local variable.
Exceptions

ExceptionCondition
System ArgumentNullException If property is null.
System InvalidOperationException If a property with the same name as property already has been added to this preference.
See Also