Class KanbanDelegate
This class is used to customize the default card and header views. If you need to provide your own implementation to override the default appearance, you can write the subclass and set its instance to Delegate property of SfKanban.
Inheritance
System.Object
KanbanDelegate
Namespace: Syncfusion.SfKanban.iOS
Assembly: Syncfusion.SfKanban.iOS.dll
Syntax
public class KanbanDelegate : Object
Constructors
KanbanDelegate()
Declaration
public KanbanDelegate()
Properties
Kanban
Declaration
public SfKanban Kanban { get; }
Property Value
| Type |
|---|
| SfKanban |
Methods
BindItemViewCell(KanbanColumn, UIView, Object, Int32)
This method help to customize the item view.
Declaration
public virtual void BindItemViewCell(KanbanColumn column, UIView view, object data, int position)
Parameters
| Type | Name | Description |
|---|---|---|
| KanbanColumn | column | Column. |
| UIKit.UIView | view | View. |
| System.Object | data | Data. |
| System.Int32 | position | Position. |
GetHeaderView(KanbanColumn, Int32)
Returns the header view.
Declaration
public virtual UIView GetHeaderView(KanbanColumn column, int columnPosition)
Parameters
| Type | Name | Description |
|---|---|---|
| KanbanColumn | column | Column. |
| System.Int32 | columnPosition | Column position. |
Returns
| Type | Description |
|---|---|
| UIKit.UIView | The header view. |
GetHeightForItemViewCell(KanbanColumn, Object, Int32)
Returns the height of item view.
Declaration
public virtual nfloat GetHeightForItemViewCell(KanbanColumn column, object data, int position)
Parameters
| Type | Name | Description |
|---|---|---|
| KanbanColumn | column | Column. |
| System.Object | data | Data. |
| System.Int32 | position | Position. |
Returns
| Type | Description |
|---|---|
| System.nfloat | The height for item view cell. |
GetItemViewCell()
Returns the customized item view.
Declaration
public virtual UIView GetItemViewCell()
Returns
| Type | Description |
|---|---|
| UIKit.UIView | The item view cell. |
GetItemViewCell(KanbanColumn, Object, Int32)
Returns the customized item view.
Declaration
public virtual UIView GetItemViewCell(KanbanColumn column, object data, int position)
Parameters
| Type | Name | Description |
|---|---|---|
| KanbanColumn | column | |
| System.Object | data | |
| System.Int32 | position |
Returns
| Type | Description |
|---|---|
| UIKit.UIView | The item view cell. |