DicomObjects.NET.V8
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 Matrix
    'Usage
     
    Dim instance As DicomImage
    Dim value As Matrix
     
    instance.UserMatrix = value
     
    value = instance.UserMatrix
    public Matrix UserMatrix {get; set;}
    public:
    property Matrix^ UserMatrix {
       Matrix^ get();
       void set (    Matrix^ 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 circumstanes where the uses wished to override the normal zoom/scroll/rotate bahaviour, and if so, then it can be done by setting this property to a non-null value.
    Requirements

    Target Platforms: .NET CLR 4.0 or higher

    See Also