HorizontalAlignment.cs 130 B

123456789
  1. namespace System.Windows.Forms
  2. {
  3. public enum HorizontalAlignment
  4. {
  5. Left,
  6. Right,
  7. Center
  8. }
  9. }