//--------------------------------------------------------------------------- // // Copyright (C) Microsoft Corporation. All rights reserved. // //--------------------------------------------------------------------------- using System; namespace ExtendedGrid.Microsoft.Windows.Controls { [Flags] /// /// Determines whether the row/column headers are shown or not. /// public enum DataGridHeadersVisibility { /// /// Show Row, Column, and Corner Headers /// All = Row | Column, /// /// Show only Column Headers with top-right corner Header /// Column = 0x01, /// /// Show only Row Headers with bottom-left corner /// Row = 0x02, /// /// Don’t show any Headers /// None = 0x00 } }