DicomObjects.NET.8.48 Documentation
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 System.Drawing.Rectangle, _
       ByVal Zoom As System.Single, _
       ByVal Frame As System.Integer, _
       ByVal Priority As System.Integer _
    ) 
    'Usage
     
    
    Dim instance As DicomImage
    Dim Area As System.Drawing.Rectangle
    Dim Zoom As System.Single
    Dim Frame As System.Integer
    Dim Priority As System.Integer
     
    instance.ExplicitJpipRequest(Area, Zoom, Frame, Priority)
    public void ExplicitJpipRequest( 
       System.Drawing.Rectangle Area,
       System.float Zoom,
       System.int Frame,
       System.int Priority
    )
    public procedure ExplicitJpipRequest( 
        Area: System.Drawing.Rectangle;
        Zoom: System.Single;
        Frame: System.Integer;
        Priority: System.Integer
    ); 
    public function ExplicitJpipRequest( 
       Area : System.Drawing.Rectangle,
       Zoom : System.float,
       Frame : System.int,
       Priority : System.int
    );
    public: void ExplicitJpipRequest( 
       System.Drawing.Rectangle Area,
       System.float Zoom,
       System.int Frame,
       System.int Priority
    ) 
    public:
    void ExplicitJpipRequest( 
       System.Drawing.Rectangle Area,
       System.float Zoom,
       System.int Frame,
       System.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.8 or higher

    See Also