VerticalAlign.cs 208 B

123456789101112131415
  1. namespace IndexFormula.Finance
  2. {
  3. using System;
  4. public enum VerticalAlign
  5. {
  6. VCenter,
  7. Top,
  8. Bottom,
  9. ScreenCenter,
  10. ScreenTop,
  11. ScreenBottom
  12. }
  13. }