//--------------------------------------------------------------------------- // // Copyright (C) Microsoft Corporation. All rights reserved. // //--------------------------------------------------------------------------- using System; namespace ExtendedGrid.Microsoft.Windows.Controls { /// /// Enum to specify the scroll orientation of cells in selective scroll grid /// public enum SelectiveScrollingOrientation { /// /// The cell will not be allowed to get /// sctolled in any direction /// None = 0, /// /// The cell will be allowed to /// get scrolled only in horizontal direction /// Horizontal = 1, /// /// The cell will be allowed to /// get scrolled only in vertical directions /// Vertical = 2, /// /// The cell will be allowed to get /// scrolled in all directions /// Both = 3 } }