DicomObjects.NET.V8
DicomObjects Namespace / DicomImage3D Class / ImagePlane Method



In This Topic
    ImagePlane Method (DicomImage3D)
    In This Topic
    The currently displayed plane of this image.
    Syntax
    'Declaration
     
    Public Overrides Function ImagePlane( _
       ByVal Frame1 As Integer _
    ) As Nullable(Of Plane3D)
    'Usage
     
    Dim instance As DicomImage3D
    Dim Frame1 As Integer
    Dim value As Nullable(Of Plane3D)
     
    value = instance.ImagePlane(Frame1)
    public override Nullable<Plane3D> ImagePlane( 
       int Frame1
    )
    public:
    Nullable<Plane3D> ImagePlane( 
       int Frame1
    ) override 

    Parameters

    Frame1

    Return Value

    The plane of the image in 3D space, or null if not applicable to this image.
    Remarks
    For 3D images, this method returns the currently viewed plane. For MPR &Slab images, this is the actual data displayed, but for VR & MIP images, it is a hypothetical plane through the image and normal to the view direction.
    Requirements

    Target Platforms: .NET CLR 4.0 or higher

    See Also