Inverts (if a cell is selected make it unselected and vice versa) the selection of the cell in the MedicalViewer control.
public void InvertSelection()
Public Sub InvertSelection()
public:
void InvertSelection();
This example freezes the non selected cells.
using Leadtools;
using Leadtools.Codecs;
using Leadtools.MedicalViewer;
using Leadtools.ImageProcessing.Core;
public void MedicalViewerCellCollectionInvertSelectionExample()
{
int index;
MedicalViewerForm myForm = GetMedicalControl();
MedicalViewer medicalViewer = myForm.Viewer;
medicalViewer.Cells.FreezeAll(false);
for (index = 0; index < medicalViewer.Cells.Count; index++)
if ((index % 2) == 0)
medicalViewer.Cells[index].Selected = true;
medicalViewer.Cells.InvertSelection();
medicalViewer.Cells.FreezeSelected(true);
myForm.ShowDialog();
}
Imports Leadtools
Imports Leadtools.Codecs
Imports Leadtools.MedicalViewer
Imports Leadtools.ImageProcessing.Core
Public Sub MedicalViewerCellCollectionInvertSelectionExample()
Dim index As Integer
Dim myForm As MedicalViewerForm = GetMedicalControl()
Dim medicalViewer As MedicalViewer = myForm.Viewer
medicalViewer.Cells.FreezeAll(False)
For index = 0 To medicalViewer.Cells.Count - 1
If (index Mod 2) = 0 Then
medicalViewer.Cells(index).Selected = True
End If
Next index
medicalViewer.Cells.InvertSelection()
medicalViewer.Cells.FreezeSelected(True)
myForm.ShowDialog()
End Sub
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document