DicomObjects.NET8 Documentation
DicomObjects Namespace / DicomImage Class / RotateState Property



In This Topic
    RotateState Property
    In This Topic
    The rotation state of the image, allowing the orientation of the image, as displayed, to be altered
    Syntax
    'Declaration
     
    
    Public Property RotateState As RotateState
    'Usage
     
    
    Dim instance As DicomImage
    Dim value As RotateState
     
    instance.RotateState = value
     
    value = instance.RotateState
    public RotateState RotateState {get; set;}
    public:
    property RotateState RotateState {
       RotateState get();
       void set (    RotateState value);
    }
    Remarks

    Check RotateState 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: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also