DicomObjects.NET.V8
DicomObjects Namespace / DicomImage Class / CineMode Property



CineMode Property
Enumerated running modes for multi-frame image
Syntax
public CineMode CineMode {get; set;}
public:
property CineMode CineMode {
   CineMode get();
   void set (    CineMode value);
}
'Declaration
 
Public Property CineMode As CineMode
 
'Usage
 
Dim instance As DicomImage
Dim value As CineMode
 
instance.CineMode = value
 
value = instance.CineMode
Remarks
All possible values are:
  • 0 - Static: The default mode. The displayed frame is selected by the Frame property, and does not change
  • 1 - Forward: A single run is made through the frames, and at the end, the value of this property reverts to Static
  • 2 - Reverse: A single run is made through the frames in reverse, and at the end (frame 0), the value of this property reverts to Static
  • 3 - Repeat: The sequence of frames runs continuously from the first, to the last, and the sequence then restarts
  • 4 - Oscillate: The sequence runs from the first frame to the last, and then back through the frames to the first, and the process then restarts
  • 5 - RepeatReverse: The sequence of frames runs continuously from the last, to the first, and the sequence then restarts
Requirements

Target Platforms: .NET CLR 3.5 or higher

See Also