FrameArrangement that represents how the frames arrangement is handled.
lt.Controls.Medical.FrameArrangement = {
Grid: 0,
Custom: 1,
RowSymmetric: 2,
ColSymmetric: 3
}
lt.Controls.Medical.FrameArrangement = {
Grid: 0,
Custom: 1,
RowSymmetric: 2,
ColSymmetric: 3
}
Members
0 | Grid |
(0x00000000) Random arrangement, you will need to take care of setting the boundaries of each cell. Refer to Items for more information on how to do that. |
1 | Custom |
(0x00000001) Grid arrangement, the medical viewer engine will take care of almost everything. The cells are arranged in the shape of a grid, controlled by two properties Rows and Columns. |
2 | RowSymmetric |
(0x00000002) Row symmetric, which means the frames are arranged to be 4 rows or less and each columns can have any number or columns. |
3 | ColSymmetric |
(0x00000003) Col symmetric, which means the frames are arranged to be 4 columns or less and each columns can have any number or rows. |
The default value is Grid.
If the FrameArrangement to Grid, then use the GridLayout property to control how the frames are arranged.
If the CellsArrangement to Custom, then use the Items property to control how the frames are arranged.
If the CellsArrangement to ColSymmetric or RowSymmetric, then use GridLayout and use:
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET