Class KanbanWorkflow
Represents the workflow for a particular category, which is used to determine the target columns a card can be dropped.
Inheritance
System.Object
KanbanWorkflow
Implements
System.ComponentModel.INotifyPropertyChanged
Namespace: Syncfusion.SfKanban.XForms
Assembly: Syncfusion.SfKanban.XForms.dll
Syntax
public class KanbanWorkflow : Object, INotifyPropertyChanged
Constructors
KanbanWorkflow()
Initializes a new instance of the KanbanWorkflow class.
Declaration
public KanbanWorkflow()
KanbanWorkflow(Object, List<Object>)
Initializes a new instance of the KanbanWorkflow class.
Declaration
public KanbanWorkflow(object category, List<object> allowedTransitions)
Parameters
Type | Name | Description |
---|---|---|
System.Object | category | Source category. |
System.Collections.Generic.List<System.Object> | allowedTransitions | Target categories where card can be dropped. |
Properties
AllowedTransitions
Gets or sets a target categories to which the card is allowed can drop.
Declaration
public List<object> AllowedTransitions { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.Object> | List of System.Object. |
Category
Gets or sets a source category to which this workflow is applied.
Declaration
public object Category { get; set; }
Property Value
Type |
---|
System.Object |
Events
PropertyChanged
Occurs when a property value changes.
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
Type |
---|
System.ComponentModel.PropertyChangedEventHandler |
Implements
System.ComponentModel.INotifyPropertyChanged