DicomObjects.NET.8.48 Documentation
DicomObjects Namespace / DicomImage Class / FlipState Property






In This Topic
    FlipState Property
    In This Topic
    The flip state of the image, allowing the orientation of the image, as displayed, to be altered
    Syntax
    'Declaration
     
    
    Public Property FlipState As FlipState
    'Usage
     
    
    Dim instance As DicomImage
    Dim value As FlipState
     
    instance.FlipState = value
     
    value = instance.FlipState
    public FlipState FlipState {get; set;}
    public read-write property FlipState: FlipState; 
    public function get,set FlipState : FlipState
    public: __property FlipState get_FlipState();
    public: __property void set_FlipState( 
       FlipState value
    );
    public:
    property FlipState FlipState {
       FlipState get();
       void set (    FlipState value);
    }
    Remarks

    Check DicomImage.FlipState for all possible values.

    Default values is Normal.

    Only display within a DicomViewer is altered by these properties. Storage and transmission are NOT affected.


    RotateState and FlipState properties interact, as for example, RotateState=180 has the same effect as FlipState=Both. Conceptually, the flip is performed first, followed by any rotation.

    These properties are over-ridden if a PresentationState is applied.

    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also