ant-design-blazor/components/table/IColumn.cs
James Yeung fcd8393742 feat(module: table): support for tree data (#771)
* feat(module: table): support for tree data

* feat(module: table): support for tree data

* fix: tests
2020-11-09 22:17:27 +08:00

29 lines
564 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using AntDesign.TableModels;
namespace AntDesign
{
public interface IColumn
{
public ITable Table { get; set; }
public bool IsHeader { get; set; }
public bool IsPlaceholder { get; set; }
public bool IsColGroup { get; set; }
public int ColIndex { get; set; }
public string Fixed { get; set; }
public string Title { get; set; }
public string Width { get; set; }
public RowData RowData { get; set; }
}
}