LEADTOOLS Medical (Leadtools.Medical.Workstation assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.30
LoadSeries Method
See Also 
Leadtools.Medical.Workstation.UI Namespace > WorkstationViewer Class : LoadSeries Method




patientId
Type: System.String The Patient ID of the series to be loaded.
studyInstanceUid
Type: System.String The Study Instnace UID of the series to be loaded.
seriesInstanceUid
Type: System.String The Series Instance UID for the series to be loaded.
loader
Leadtools.Medical.Workstation.Loader.MedicalViewerLoaderBase The object used to retrieve the series images and load them into the N:Leadtools.MedicalViewer control.
patientId
Type: System.String The Patient ID of the series to be loaded.
studyInstanceUid
Type: System.String The Study Instnace UID of the series to be loaded.
seriesInstanceUid
Type: System.String The Series Instance UID for the series to be loaded.
loader
Leadtools.Medical.Workstation.Loader.MedicalViewerLoaderBase The object used to retrieve the series images and load them into the N:Leadtools.MedicalViewer control.
Loads DICOM Series images into the viewer for viewing.

Syntax

Visual Basic (Declaration) 
Public Sub LoadSeries( _
   ByVal patientId As String, _
   ByVal studyInstanceUid As String, _
   ByVal seriesInstanceUid As String, _
   ByVal loader As MedicalViewerLoaderBase _
) 
Visual Basic (Usage)Copy Code
Dim instance As WorkstationViewer
Dim patientId As String
Dim studyInstanceUid As String
Dim seriesInstanceUid As String
Dim loader As MedicalViewerLoaderBase
 
instance.LoadSeries(patientId, studyInstanceUid, seriesInstanceUid, loader)
C# 
public void LoadSeries( 
   string patientId,
   string studyInstanceUid,
   string seriesInstanceUid,
   MedicalViewerLoaderBase loader
)
Managed Extensions for C++ 
public: void LoadSeries( 
   string* patientId,
   string* studyInstanceUid,
   string* seriesInstanceUid,
   MedicalViewerLoaderBase* loader
) 
C++/CLI 
public:
void LoadSeries( 
   String^ patientId,
   String^ studyInstanceUid,
   String^ seriesInstanceUid,
   MedicalViewerLoaderBase^ loader
) 

Parameters

patientId
Type: System.String The Patient ID of the series to be loaded.
studyInstanceUid
Type: System.String The Study Instnace UID of the series to be loaded.
seriesInstanceUid
Type: System.String The Series Instance UID for the series to be loaded.
loader
Leadtools.Medical.Workstation.Loader.MedicalViewerLoaderBase The object used to retrieve the series images and load them into the N:Leadtools.MedicalViewer control.

Example

For an example, refer to the Medical Workstation Viewer or the live Medical Web Viewer demo.

Remarks

The images are retrieved and loaded in a separate thread. This means the method can return before the images are fully loaded. To know when the images are fully loaded into the viewer, register with the WorkstationViewer.SeriesLoadingCompleted, WorkstationViewer.SeriesLoadingCanceled and WorkstationViewer.SeriesLoadingError events.

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7

See Also