DicomObjects.NET.V8
DicomObjects Namespace / DicomImage Class / ExplicitJpipRequest Method / ExplicitJpipRequest(Rectangle,Single,Int32,Int32) Method
The area of the image requested (pixel units)
The zoom factor required
The requested frame number (first = 1)
The priority of the request (higher values mean higher priority)



In This Topic
    ExplicitJpipRequest(Rectangle,Single,Int32,Int32) Method
    In This Topic
    Explicitly request that some of the pixel information for this image should be retrieved via JPIP
    Syntax
    'Declaration
     
    Public Overloads Sub ExplicitJpipRequest( _
       ByVal Area As Rectangle, _
       ByVal Zoom As Single, _
       ByVal Frame As Integer, _
       ByVal Priority As Integer _
    ) 
    'Usage
     
    Dim instance As DicomImage
    Dim Area As Rectangle
    Dim Zoom As Single
    Dim Frame As Integer
    Dim Priority As Integer
     
    instance.ExplicitJpipRequest(Area, Zoom, Frame, Priority)
    public void ExplicitJpipRequest( 
       Rectangle Area,
       float Zoom,
       int Frame,
       int Priority
    )
    public:
    void ExplicitJpipRequest( 
       Rectangle Area,
       float Zoom,
       int Frame,
       int Priority
    ) 

    Parameters

    Area
    The area of the image requested (pixel units)
    Zoom
    The zoom factor required
    Frame
    The requested frame number (first = 1)
    Priority
    The priority of the request (higher values mean higher priority)
    Remarks
    implicit requests (e.g. if the image is being displayed in a viewer) have priority values between 1000 and 10000 depending on how long since they were last updated.
    Requirements

    Target Platforms: .NET CLR 4.0 or higher

    See Also