[FlagsAttribute()]
public enum DisplayMode
Value | Member | Description |
---|---|---|
0x00000000 | None | No cells will be displayed in the ViewerControl. |
0x00000001 | FullSeriesCell | Displays the cell which contains all the series images frames. This will always be the first cell in the series. |
0x00000002 | MultiFrameCell | Displays the cells(s) which contain images with multi-frames. |
0x00000004 | SingleFrameCell | Displays the cell which contains the single frame images. This will always be the last cell in the series. |
0x00000008 | All | Displays all combinations of cells (FullSeriesCell + MultiFrameCell + SingleFrameCell). |
This is a System.FlagsAttribute enumeration which means you can perform bitwise OR operation between the values to combine and generate different type of cells.