UndoableSet T  Class TIBCO Spotfire 6.0 API Reference
A set of items where all operations are undoable.
Inheritance Hierarchy

System Object
  Spotfire.Dxp.Framework.DocumentModel Node
    UndoableNode
      UndoableCollectionNode
        Spotfire.Dxp.Framework.DocumentModel UndoableSet T 

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

[SerializableAttribute]
public sealed class UndoableSet<T> : UndoableCollectionNode, 
	ICollection<T>, IEnumerable<T>, IEnumerable
Type Parameters

T
The type of the items in the set. May be a class that derives from DocumentNode or any other immutable type such as int or string.
Remarks

When the set is modified, its owner will raise an event using the PropertyName that the set was constructed with. To construct an instance of UndoableSet, use the corresponding CreateProperty() overload in DocumentNode.
See Also