VinnoDisplayMode.cs 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. namespace fis.Vid.Visuals
  2. {
  3. public enum VinnoDisplayMode
  4. {
  5. /// <summary>
  6. /// Normal B mode
  7. /// </summary>
  8. Normal = 0,
  9. /// <summary>
  10. /// Up/Down, B holds 1/3, Other hodes 2/3
  11. /// </summary>
  12. UpDown13B = 1,
  13. /// <summary>
  14. /// Up/Down, half, half
  15. /// </summary>
  16. UpDownHalfHalf = 2,
  17. /// <summary>
  18. /// Up/Down, B holds2/3, Other hodes1/3
  19. /// </summary>
  20. UpDown23B = 3,
  21. ///// <summary>
  22. ///// Left/Right, B holds 1/3, other hodes 2/3
  23. ///// </summary>
  24. //SideBySide13B = 3,
  25. /// <summary>
  26. /// Left/Right, half, half
  27. /// </summary>
  28. SideBySideHalfHalf = 4,
  29. /// <summary>
  30. /// Left/Right, B holds2/3, Other hodes1/3
  31. /// </summary>
  32. SideBySide14BOther = 5,
  33. /// <summary>
  34. /// All Image area are Other image instead of B image
  35. /// </summary>
  36. FullOther = 6,
  37. FullTissue = 7,
  38. }
  39. }