Products | Support | Email a link to this topic. | Send comments on this topic. | Back to Introduction - All Topics | Help Version 19.0.12.8
|
Leadtools.MedicalViewer Namespace > MedicalViewerScale Class > MedicalViewerScale Constructor : MedicalViewerScale Constructor(Int32,Int32,Boolean,Cursor) |
This example changes the Scale of an image, and change the scale action properties.
Imports Leadtools Imports Leadtools.Codecs Imports Leadtools.MedicalViewer <TestMethod()> _ Public Sub MedicalViewerScaleExample4() Dim myForm As MedicalViewerForm = GetMedicalControl() Dim medicalViewer As MedicalViewer = myForm.Viewer Dim scale As MedicalViewerScale = New MedicalViewerScale(200, 200, False, Cursors.SizeNS) Dim cell As MedicalViewerMultiCell = CType(medicalViewer.Cells(0), MedicalViewerMultiCell) cell.SetActionProperties(MedicalViewerActionType.Scale, scale, 0) scale.Dispose() myForm.ShowDialog() End Sub
using Leadtools; using Leadtools.Codecs; using Leadtools.MedicalViewer; [TestMethod] public void MedicalViewerScaleExample4() { MedicalViewerForm myForm = GetMedicalControl(); MedicalViewer medicalViewer = myForm.Viewer; MedicalViewerScale scale = new MedicalViewerScale(200, 200, false, Cursors.SizeNS); MedicalViewerMultiCell cell = (MedicalViewerMultiCell)(medicalViewer.Cells[0]); cell.SetActionProperties(MedicalViewerActionType.Scale, scale, 0); scale.Dispose(); myForm.ShowDialog(); }