ListViewAlignment.cs 163 B

12345678910
  1. namespace System.Windows.Forms
  2. {
  3. public enum ListViewAlignment
  4. {
  5. Default = 0,
  6. Top = 2,
  7. Left = 1,
  8. SnapToGrid = 5
  9. }
  10. }