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



In This Topic
    UserMatrix Property
    In This Topic
    Means to override the matrix used to display 2D images
    Syntax
    'Declaration
     
    
    Public Property UserMatrix As Nullable(Of SKMatrix)
    'Usage
     
    
    Dim instance As DicomImage
    Dim value As Nullable(Of SKMatrix)
     
    instance.UserMatrix = value
     
    value = instance.UserMatrix
    public Nullable<SKMatrix> UserMatrix {get; set;}
    public:
    property Nullable<SKMatrix> UserMatrix {
       Nullable<SKMatrix> get();
       void set (    Nullable<SKMatrix> value);
    }
    Remarks
    There are multiple uses for the display matrix, with numerous matrix overrides, which all ultimately call the CoreMatrix protected function, but there could be special circumstances where the uses wished to override the normal zoom/scroll/rotate behaviour, and if so, then it can be done by setting this property to a non-null value.
    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