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
Namespace: Syncfusion.SfKanban.Android
Assembly: Syncfusion.SfKanban.Android.dll
Syntax
public class KanbanWorkflow : Object
Constructors
KanbanWorkflow()
Initializes the new instance of KanbanWorkflow class.
Declaration
public KanbanWorkflow()
KanbanWorkflow(Object, List<Object>)
Initializes the 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 | Description |
---|---|
System.Object | The category. |