PIbd-21_Alekseev_I.S._Confe.../Confectionery/ConfectioneryContracts/Attributes/GridViewAutoSize.cs
Иван Алексеев a2d4f41c08 вроде бы все
2024-06-18 10:22:44 +04:00

28 lines
427 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConfectioneryContracts.Attributes
{
public enum GridViewAutoSize
{
NotSet = 0,
None = 1,
ColumnHeader = 2,
AllCellsExceptHeader = 4,
AllCells = 6,
DisplayedCellsExceptHeader = 8,
DisplayedCells = 10,
Fill = 16
}
}