1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- namespace fis.Vid.Visuals
- {
- public enum VinnoDisplayMode
- {
- /// <summary>
- /// Normal B mode
- /// </summary>
- Normal = 0,
- /// <summary>
- /// Up/Down, B holds 1/3, Other hodes 2/3
- /// </summary>
- UpDown13B = 1,
- /// <summary>
- /// Up/Down, half, half
- /// </summary>
- UpDownHalfHalf = 2,
- /// <summary>
- /// Up/Down, B holds2/3, Other hodes1/3
- /// </summary>
- UpDown23B = 3,
- ///// <summary>
- ///// Left/Right, B holds 1/3, other hodes 2/3
- ///// </summary>
- //SideBySide13B = 3,
- /// <summary>
- /// Left/Right, half, half
- /// </summary>
- SideBySideHalfHalf = 4,
- /// <summary>
- /// Left/Right, B holds2/3, Other hodes1/3
- /// </summary>
- SideBySide14BOther = 5,
- /// <summary>
- /// All Image area are Other image instead of B image
- /// </summary>
- FullOther = 6,
- FullTissue = 7,
- }
- }
|