mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-05 05:27:37 +08:00
643c6de31e
* feat(module:table): header template and item template * add demos * fix merge conflict * rename some api Co-authored-by: anranruye <hehewewe@hotmail.com>
37 lines
744 B
C#
37 lines
744 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; }
|
|
|
|
public int ColSpan { get; set; }
|
|
|
|
public int RowSpan { get; set; }
|
|
|
|
public int HeaderColSpan { get; set; }
|
|
}
|
|
}
|