Class ColumnModel
Interface for the class Columns.
Inheritance
System.Object
ColumnModel
Namespace: Syncfusion.Blazor.Kanban
Assembly: Syncfusion.Blazor.dll
Syntax
public class ColumnModel : Object
Constructors
ColumnModel()
Declaration
public ColumnModel()
Properties
AllowAdding
Enable or disable cell add button.
Declaration
public bool AllowAdding { get; set; }
Property Value
Type |
---|
System.Boolean |
AllowDrag
Enable or disable column drag.
Declaration
public bool AllowDrag { get; set; }
Property Value
Type |
---|
System.Boolean |
AllowDrop
Enable or disable column drop.
Declaration
public bool AllowDrop { get; set; }
Property Value
Type |
---|
System.Boolean |
AllowToggle
Enable or disable toggle column.
Declaration
public bool AllowToggle { get; set; }
Property Value
Type |
---|
System.Boolean |
HeaderText
Defines the column header title.
Declaration
public string HeaderText { get; set; }
Property Value
Type |
---|
System.String |
Index
Defines the column order.
Declaration
public int Index { get; set; }
Property Value
Type |
---|
System.Int32 |
IsExpanded
Defines the collapsed or expandable state.
Declaration
public bool IsExpanded { get; set; }
Property Value
Type |
---|
System.Boolean |
KeyField
Defines the column keyField.
Declaration
public List<string> KeyField { get; set; }
Property Value
Type |
---|
System.Collections.Generic.List<System.String> |
MaxCount
Defines the maximum card count in column.
Declaration
public int MaxCount { get; set; }
Property Value
Type |
---|
System.Int32 |
MinCount
Defines the minimum card count in column.
Declaration
public int MinCount { get; set; }
Property Value
Type |
---|
System.Int32 |
ShowItemCount
Enable or disable card count in column.
Declaration
public bool ShowItemCount { get; set; }
Property Value
Type |
---|
System.Boolean |
TransitionColumns
Defines the column transition.
Declaration
public List<string> TransitionColumns { get; set; }
Property Value
Type |
---|
System.Collections.Generic.List<System.String> |
Visible
Enable or disable column visibility.
Declaration
public bool Visible { get; set; }
Property Value
Type |
---|
System.Boolean |