DicomObjects.NET10 Documentation
DicomObjects Namespace / PixelRequest Class / PixelRequest Constructor
The Area of the image required, specified in pixel coordinates before any transformations
The Zoom required
The urgency/type of the request - see DicomObjects.Enums.RequestType for details
The Frame requested (1-based)
The number of components required - 1 for a monochrome display or 3 for colour



In This Topic
    PixelRequest Constructor
    In This Topic
    Main constructor for PixelRequest
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal Area As SkiaSharp.SKRect, _
       ByVal Zoom As Single, _
       ByVal Sync As RequestType, _
       ByVal Frame As Integer, _
       ByVal Components As Integer _
    )
    'Usage
     
    
    Dim Area As SkiaSharp.SKRect
    Dim Zoom As Single
    Dim Sync As RequestType
    Dim Frame As Integer
    Dim Components As Integer
     
    Dim instance As New PixelRequest(Area, Zoom, Sync, Frame, Components)
    public PixelRequest( 
       SkiaSharp.SKRect Area,
       float Zoom,
       RequestType Sync,
       int Frame,
       int Components
    )
    public:
    PixelRequest( 
       SkiaSharp.SKRect Area,
       float Zoom,
       RequestType Sync,
       int Frame,
       int Components
    )

    Parameters

    Area
    The Area of the image required, specified in pixel coordinates before any transformations
    Zoom
    The Zoom required
    Sync
    The urgency/type of the request - see DicomObjects.Enums.RequestType for details
    Frame
    The Frame requested (1-based)
    Components
    The number of components required - 1 for a monochrome display or 3 for colour
    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