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

Namespace: Spotfire.Dxp.Framework.DocumentModel
Assembly: Spotfire.Dxp.Framework (in Spotfire.Dxp.Framework.dll) Version: 30.0.11525.4184 (30.0.11525.4184)
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.9, 7.8, 7.7, 7.6, 7.5, 7.12, 7.11, 7.10, 7.0
See Also

Reference