TriggerCreateMutablePropertyTriggerT Method (DocumentNode, PropertyName, PropertyName) TIBCO Spotfire 7.6 API Reference

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

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

Parameters

node
Type: Spotfire.Dxp.Framework.DocumentModelDocumentNode
The node containing the mutable property.
propertyName
Type: Spotfire.Dxp.Framework.DocumentModelPropertyName
PropertyName of the mutable property. This must be an UndoableProperty or an UndoableCrossReferenceProperty owned by the specified node.
triggeringPropertyNames
Type: Spotfire.Dxp.Framework.DocumentModelPropertyName
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);
   });
Version Information

Supported in: 7.6, 7.5, 7.0, 6.5, 6.0, 5.5, 5.0
See Also

Reference