Class KanbanColumn
This class represents a column in SfKanban.
Inheritance
Implements
Namespace: Syncfusion.Maui.Kanban
Assembly: Syncfusion.Maui.Kanban.dll
Syntax
public class KanbanColumn : Element, INotifyPropertyChanged
Constructors
KanbanColumn()
Initializes a new instance of the KanbanColumn.
Declaration
public KanbanColumn()
Fields
AllowDragProperty
Identifies the AllowDrag bindable property.
Declaration
public static readonly BindableProperty AllowDragProperty
Field Value
Type |
---|
Microsoft.Maui.Controls.BindableProperty |
AllowDropProperty
Identifies the AllowDrop bindable property.
Declaration
public static readonly BindableProperty AllowDropProperty
Field Value
Type |
---|
Microsoft.Maui.Controls.BindableProperty |
CategoriesProperty
Identifies the Categories bindable property.
Declaration
public static readonly BindableProperty CategoriesProperty
Field Value
Type |
---|
Microsoft.Maui.Controls.BindableProperty |
ErrorBarSettingsProperty
Identifies the ErrorBarSettings bindable property.
Declaration
public static readonly BindableProperty ErrorBarSettingsProperty
Field Value
Type |
---|
Microsoft.Maui.Controls.BindableProperty |
IsExpandedProperty
Identifies the IsExpanded bindable property.
Declaration
public static readonly BindableProperty IsExpandedProperty
Field Value
Type |
---|
Microsoft.Maui.Controls.BindableProperty |
MaximumLimitProperty
Identifies the MaximumLimit bindable property.
Declaration
public static readonly BindableProperty MaximumLimitProperty
Field Value
Type |
---|
Microsoft.Maui.Controls.BindableProperty |
MinimumLimitProperty
Identifies the MinimumLimit bindable property.
Declaration
public static readonly BindableProperty MinimumLimitProperty
Field Value
Type |
---|
Microsoft.Maui.Controls.BindableProperty |
TitleProperty
Identifies the Title bindable property.
Declaration
public static readonly BindableProperty TitleProperty
Field Value
Type |
---|
Microsoft.Maui.Controls.BindableProperty |
Properties
AllowDrag
Gets or sets a value indicating whether a card can be dragged from this KanbanColumn.
Declaration
public bool AllowDrag { get; set; }
Property Value
Type |
---|
System.Boolean |
AllowDrop
Gets or sets a value indicating whether a card can be dropped to this KanbanColumn.
Declaration
public bool AllowDrop { get; set; }
Property Value
Type |
---|
System.Boolean |
Categories
Declaration
public List<object> Categories { get; set; }
Property Value
Type |
---|
System.Collections.Generic.List<System.Object> |
ErrorBarSettings
Declaration
public KanbanErrorBarSettings ErrorBarSettings { get; set; }
Property Value
Type |
---|
KanbanErrorBarSettings |
IsExpanded
Gets or sets a value indicating whether the KanbanColumn is in expanded state.
Declaration
public bool IsExpanded { get; set; }
Property Value
Type |
---|
System.Boolean |
ItemsCount
Gets the KanbanColumn's card count.
Declaration
public int ItemsCount { get; }
Property Value
Type | Description |
---|---|
System.Int32 | KanbanColumn's card count. |
Kanban
Declaration
public SfKanban Kanban { get; }
Property Value
Type |
---|
SfKanban |
MaximumLimit
Gets or sets a value that denotes the maximum card limit constraint for the KanbanColumn.
Declaration
public int MaximumLimit { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | Maximum card limit value. |
Remarks
If the card count is greater than MaximumLimit then MaxValidationFill will be applied to the error bar.
MinimumLimit
Gets or sets a value that denotes the minimum card limit constraint for the KanbanColumn.
Declaration
public int MinimumLimit { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | Minimum card limit value. |
Remarks
If the card count is less than MinimumLimit then MinValidationFill will be applied to the error bar.
Title
Gets or sets the title content for the KanbanColumn.
Declaration
public string Title { get; set; }
Property Value
Type |
---|
System.String |
Methods
OnBindingContextChanged()
Declaration
protected override void OnBindingContextChanged()