SushiBarBase/SushiBar/SushiBarContracts/Attributes/GridViewAutoSize.cs

15 lines
241 B
C#
Raw Normal View History

namespace SushiBarContracts.Attributes
{
public enum GridViewAutoSize
{
NotSet = 0,
None = 1,
ColumnHeader = 2,
AllCellsExceptHeader = 4,
AllCells = 6,
DisplayedCellsExceptHeader = 8,
DisplayedCells = 10,
Fill = 16
}
}