Leadtools.MedicalViewer Requires Medical Imaging license | Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
MedicalViewerStack Class
See Also  Members   Example 
Leadtools.MedicalViewer Namespace : MedicalViewerStack Class



Represents the class that contains the properties of the stack action.

Syntax

Visual Basic (Declaration) 
Public Class MedicalViewerStack 
   Inherits MedicalViewerCommonActions
Visual Basic (Usage)Copy Code
Dim instance As MedicalViewerStack
C# 
public class MedicalViewerStack : MedicalViewerCommonActions 
C++/CLI 
public ref class MedicalViewerStack : public MedicalViewerCommonActions 

Example

Make the fifth frame of the image is the active sub-cell

Visual BasicCopy Code
<Test> _
Public Sub MedicalViewerStackExample1()
   Dim myForm As MedicalViewerForm = GetMedicalControl()
   Dim medicalViewer As MedicalViewer = myForm.Viewer
   medicalViewer.Cells(0).Rows = 2
   medicalViewer.Cells(0).Columns = 2

   Dim stack As MedicalViewerStack = CType(medicalViewer.GetActionProperties(MedicalViewerActionType.Stack, 0), MedicalViewerStack)
   stack.ActiveSubCell = 3
   stack.ScrollValue = 1
   medicalViewer.SetActionProperties(MedicalViewerActionType.Stack, stack, 0)
   medicalViewer.Cells(0).Selected = True
   myForm.ShowDialog()
End Sub
C#Copy Code
public void MedicalViewerStackExample1() 

   MedicalViewerForm myForm = GetMedicalControl(); 
   MedicalViewer medicalViewer = myForm.Viewer; 
 
   medicalViewer.Cells[0].Rows = 2; 
   medicalViewer.Cells[0].Columns = 2; 
 
   MedicalViewerStack stack = (MedicalViewerStack)medicalViewer.GetActionProperties(MedicalViewerActionType.Stack, 0); 
   stack.ActiveSubCell = 3; 
   stack.ScrollValue = 1; 
   medicalViewer.SetActionProperties(MedicalViewerActionType.Stack, stack, 0); 
   medicalViewer.Cells[0].Selected = true; 
   myForm.ShowDialog(); 
}

Remarks

To set the properties of the stack action, call the SetActionProperties method, and to retrieve the properties call the GetActionProperties method.

The mouse controls the actions as follows:

  • Click and hold the mouse to start the effect. When the assigned mouse button is released the action ends. It is better to assign the mouse wheel to the stack action, so if the user wheels up or down the stack action occurs.
  • Dragging the mouse down shows the next frame.
  • Dragging the mouse up shows the previous frame.

Inheritance Hierarchy

System.Object
   Leadtools.MedicalViewer.MedicalViewerBaseAction
      Leadtools.MedicalViewer.MedicalViewerCommonActions
         Leadtools.MedicalViewer.MedicalViewerStack

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also

Leadtools.MedicalViewer requires a Medical Imaging license and unlock key. For more information, refer to: Imaging Pro/Document/Medical Features