Class KanbanWorkflow
This class represents the KanbanWorkflow for a particular category, which is used to determine the target columns where a card can be dropped.
Inheritance
System.Object
KanbanWorkflow
Implements
System.ComponentModel.INotifyPropertyChanged
Namespace: Syncfusion.Maui.Kanban
Assembly: Syncfusion.Maui.Kanban.dll
Syntax
public class KanbanWorkflow : Object, INotifyPropertyChanged
Constructors
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 | |
System.Collections.Generic.List<System.Object> | allowedTransitions |
Properties
AllowedTransitions
Gets or sets the target categories to which the card is allowed to drop.
Declaration
public List<object> AllowedTransitions { get; set; }
Property Value
Type |
---|
System.Collections.Generic.List<System.Object> |
Category
Gets or sets the source category to which this workflow is applied.
Declaration
public object Category { get; set; }
Property Value
Type |
---|
System.Object |
Events
PropertyChanged
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
Type |
---|
System.ComponentModel.PropertyChangedEventHandler |
Implements
System.ComponentModel.INotifyPropertyChanged