Class KanbanModel
The KanbanModel class represents the fields for the card.
Inheritance
System.Object
KanbanModel
Implements
System.ComponentModel.INotifyPropertyChanged
Namespace: Syncfusion.Maui.Kanban
Assembly: Syncfusion.Maui.Kanban.dll
Syntax
public class KanbanModel : Object, INotifyPropertyChanged
Constructors
KanbanModel()
Declaration
public KanbanModel()
Properties
CanShowPlaceholder
Internal use only.
Declaration
public bool CanShowPlaceholder { get; }
Property Value
Type |
---|
System.Boolean |
Category
Gets or sets the category of the card.
Declaration
public object Category { get; set; }
Property Value
Type |
---|
System.Object |
Description
Gets or sets the description of the card.
Declaration
public string Description { get; set; }
Property Value
Type |
---|
System.String |
ID
Gets or sets the ID of the card.
Declaration
public double ID { get; set; }
Property Value
Type |
---|
System.Double |
ImageURL
Gets or sets the image URL of the card.
Declaration
public string ImageURL { get; set; }
Property Value
Type | Description |
---|---|
System.String | The image URL can be set in two ways for defulat card:
|
IndicatorFill
Gets or sets the indicator color in the card.
Declaration
public Brush IndicatorFill { get; set; }
Property Value
Type |
---|
Microsoft.Maui.Controls.Brush |
Tags
Gets or sets the tags of the card.
Declaration
public List<string> Tags { get; set; }
Property Value
Type |
---|
System.Collections.Generic.List<System.String> |
Title
Gets or sets the card title.
Declaration
public string Title { get; set; }
Property Value
Type |
---|
System.String |
Events
PropertyChanged
This event is raised when a property value changes.
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
Type |
---|
System.ComponentModel.PropertyChangedEventHandler |
Implements
System.ComponentModel.INotifyPropertyChanged