Trigger CreateMutablePropertyTrigger T  Method (DocumentNode, PropertyName,  PropertyName ) TIBCO Spotfire 6.0 API Reference

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

public static Trigger CreateMutablePropertyTrigger<T>(
	DocumentNode node,
	PropertyName propertyName,
	params PropertyName[] triggeringPropertyNames
)
where T : DocumentNode

Parameters

node
Type: Spotfire.Dxp.Framework.DocumentModel DocumentNode
The node containing the mutable property.
propertyName
Type: Spotfire.Dxp.Framework.DocumentModel PropertyName
PropertyName of the mutable property. This must be an UndoableProperty or an UndoableCrossReferenceProperty owned by the specified node.
triggeringPropertyNames
Type:  Spotfire.Dxp.Framework.DocumentModel PropertyName 
The PropertyNames of the properties in the node referenced by the specified node and propertyName that shall fire the MutablePropertyTrigger.
Type Parameters

T
The type of the referenced node.

Return Value

Type: Trigger
Remarks

This method is a convenience method for:
CreateMutablePropertyTrigger<T>(node, propertyName,
   delegate(T referencedNode)
   {
       return Trigger.CreatePropertyTrigger(referencedNode, triggeringPropertyNames);
   });
See Also