Click or drag to resize

ContextMenuTriggerCondition Class

Specifies a trigger condition that allows starting a workflow based on user actions.
Inheritance Hierarchy
SystemObject
  Colygon.MatchPoint.WorkflowKit.ConfigurationBaseTriggerCondition
    Colygon.MatchPoint.WorkflowKit.ConfigurationContextMenuTriggerCondition

Namespace:  Colygon.MatchPoint.WorkflowKit.Configuration
Assembly:  Colygon.MatchPoint (in Colygon.MatchPoint.dll) Version: 2019.2.1.0
Syntax
C#
[SerializableAttribute]
public class ContextMenuTriggerCondition : BaseTriggerCondition

The ContextMenuTriggerCondition type exposes the following members.

Constructors
  NameDescription
Public methodContextMenuTriggerCondition
Initializes a new instance of the ContextMenuTriggerCondition class
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Fields
  NameDescription
Public fieldContentType
Specifies a content type that has to match.
(Inherited from BaseTriggerCondition.)
Public fieldExpression
Specifies an expression that has to evaluate to the boolean value 'true'. In the 'ContextMenuTriggerCondition' you can use 'DataItem.PropertyName' to access the properties of the list item where the context menu should be shown. E.g.: 'DataItem.Category == "Global"'.
(Inherited from BaseTriggerCondition.)
Public fieldRecursive
If enabled, all descendants of the specified tag are also matched.
(Inherited from BaseTriggerCondition.)
Public fieldTag
Specifies a tag that has to exist on the item.
(Inherited from BaseTriggerCondition.)
Public fieldUrlPrefix
Specifies an URL prefix that has to match. This URL can be relative to the workflow item's web.
(Inherited from BaseTriggerCondition.)
Public fieldUserTransitions
Contains the user transitions that can start the workflow.
Top
Remarks
Within the trigger condition, different UserTransition can be configured to specify the possible actions for starting a workflow.

Once configured, the specified user transitions can be accessed either from a DataGrid context menu or from the item's display form.

Remarks
This is a MatchPoint configuration class.
See Also