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



In This Topic
    CineMode Property
    In This Topic
    Enumerated running modes for multi-frame image
    Syntax
    'Declaration
     
    Public Property CineMode As CineMode
    'Usage
     
    Dim instance As DicomImage
    Dim value As CineMode
     
    instance.CineMode = value
     
    value = instance.CineMode
    public CineMode CineMode {get; set;}
    public:
    property CineMode CineMode {
       CineMode get();
       void set (    CineMode value);
    }
    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 4.0 or higher

    See Also