StickAlignment.cs 280 B

123456789101112131415161718
  1. namespace IndexFormula.Finance
  2. {
  3. using System;
  4. public enum StickAlignment
  5. {
  6. LeftTop,
  7. LeftCenter,
  8. LeftBottom,
  9. CenterTop,
  10. CenterCenter,
  11. CenterBottom,
  12. RightTop,
  13. RightCenter,
  14. RightBottom
  15. }
  16. }