File: System\Windows\Forms\Controls\DataGridView\DataGridViewCellStyleScopes.cs
Web Access
Project: src\winforms\src\System.Windows.Forms\System.Windows.Forms.csproj (System.Windows.Forms)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace System.Windows.Forms;
 
[Flags]
public enum DataGridViewCellStyleScopes
{
    None = 0x00,
    Cell = 0x01,
    Column = 0x02,
    Row = 0x04,
    DataGridView = 0x08,
    ColumnHeaders = 0x10,
    RowHeaders = 0x20,
    Rows = 0x40,
    AlternatingRows = 0x80
}