123456789101112131415161718192021222324252627 |
- /// C# enum begin at -1,so if u would like to match value, must calcluate -1
- // ignore_for_file: constant_identifier_names
- enum DisplayModeEnum {
- /// Normal B mode
- Normal,
- /// Up/Down, B holds 1/3, Other hodes 2/3
- UpDown13B,
- /// Up/Down, half, half
- UpDownHalfHalf,
- /// Up/Down, B holds2/3, Other hodes1/3
- UpDown23B,
- /// Left/Right, half, half
- SideBySideHalfHalf,
- /// Left/Right, B holds2/3, Other hodes1/3
- SideBySide14BOther,
- /// All Image area are Other image instead of B image
- FullOther,
- FullTissue,
- }
|