ant-design-blazor/components/table/IColumn.cs
James Yeung 43664736f7 feat(module: table): fixed header & columns (#954)
* feat(module: table): support fixed header & columns

* fix layout of the fixed columns & header

* fix scrollbar hidding

* header and body sync scroll

* fix column width calc

* fix demo pagesize

* fix docs
2021-01-09 23:57:31 +08:00

31 lines
612 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 IsInitialize { 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; }
}
}