ScrollValue Property

Summary
Gets or sets the value that indicates the position of the cell scroll.
Syntax
C#
C++/CLI
public int ScrollValue { get; set; } 
            public: 
property int ScrollValue { 
   int get(); 
   void set (    int ); 
} 

Property Value

Value that indicates the position of the cell scroll.

Example
C#
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.MedicalViewer; 
 
public void MedicalViewerStackExample2() 
{ 
   MedicalViewerForm myForm = GetMedicalControl(); 
   MedicalViewer medicalViewer = myForm.Viewer; 
   MedicalViewerMultiCell cell = (MedicalViewerMultiCell)(medicalViewer.Cells[0]); 
 
   cell.Rows = 2; 
   cell.Columns = 2; 
 
   MedicalViewerStack stack = (MedicalViewerStack)cell.GetActionProperties(MedicalViewerActionType.Stack, 0); 
   stack.ActiveSubCell = 3; 
   stack.ScrollValue = 1; 
   cell.SetActionProperties(MedicalViewerActionType.Stack, stack, 0); 
   stack.Dispose(); 
   cell.Selected = true; 
   myForm.ShowDialog(); 
} 
Requirements

Target Platforms

Help Version 22.0.2023.2.5
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.MedicalViewer Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.