PIbd-23_Elatomtsev_L.K._Con.../Confectionery/ConfectioneryContracts/Attributes/GridViewAutoSize.cs

15 lines
303 B
C#
Raw Normal View History

2024-05-22 14:38:56 +04:00
namespace ConfectioneryContracts.Attributes
{
public enum GridViewAutoSize
{
NotSet = 0,
None = 1,
ColumnHeader = 2,
AllCellsExceptHeader = 4,
AllCells = 6,
DisplayedCellsExceptHeader = 8,
DisplayedCells = 10,
Fill = 16
}
}