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 > MedicalViewerCellCollection<MedicalViewerBaseCell> Class : Reposition Method |
This example swaps the first and the second cell.
Imports Leadtools Imports Leadtools.Codecs Imports Leadtools.MedicalViewer Imports Leadtools.ImageProcessing.Core <TestMethod()> _ Public Sub MedicalViewerCellCollectionRepositionCellsExample() Dim myForm As MedicalViewerForm = GetMedicalControl() Dim medicalViewer As MedicalViewer = myForm.Viewer medicalViewer.Cells.Reposition(0, 1, True) myForm.ShowDialog() End Sub
using Leadtools; using Leadtools.Codecs; using Leadtools.MedicalViewer; using Leadtools.ImageProcessing.Core; [TestMethod] public void MedicalViewerCellCollectionRepositionCellsExample() { MedicalViewerForm myForm = GetMedicalControl(); MedicalViewer medicalViewer = myForm.Viewer; medicalViewer.Cells.Reposition(0, 1, true); myForm.ShowDialog(); }