PIbd-23-Radaev-A.V.-GiftShop/GiftShop/GiftShopContracts/Attributes/GridViewAutoSize.cs

22 lines
262 B
C#
Raw Normal View History

2024-05-17 13:28:57 +04:00
namespace GiftShopContracts.Attributes
{
public enum GridViewAutoSize
{
NotSet = 0,
None = 1,
ColumnHeader = 2,
AllCellsExceptHeader = 4,
AllCells = 6,
DisplayedCellsExceptHeader = 8,
DisplayedCells = 10,
Fill = 16
}
}