public ImageViewer(
ImageViewerViewLayout viewLayout
)
Public Sub New()
public:
ImageViewer()
viewLayout
Default view layout to use. Must not be null.
This example will create a new instance of ImageViewer using a vertical layout. Then adds a few items to it.
using Leadtools;
using Leadtools.Controls;
using Leadtools.Codecs;
using Leadtools.Drawing;
using LeadtoolsExamples.Common;
using Leadtools.ImageProcessing;
using Leadtools.ImageProcessing.Color;
public void ImageViewerConstructor_Example()
{
_imageViewer = new ImageViewer(new ImageViewerVerticalViewLayout { Columns = 1 });
_imageViewer.BackColor = Color.Bisque;
_imageViewer.Dock = DockStyle.Fill;
_imageViewer.BringToFront();
_imageViewer.Name = "_imageViewer";
}
Imports Leadtools
Imports Leadtools.Controls
Imports Leadtools.Codecs
Imports Leadtools.Drawing
Imports Leadtools.ImageProcessing
Imports Leadtools.ImageProcessing.Color
Imports LeadtoolsControlsExamples.LeadtoolsExamples.Common
Public Sub ImageViewerConstructor_Example()
Dim viewLayout As New ImageViewerVerticalViewLayout
viewLayout.Columns = 1
_imageViewer = New ImageViewer(viewLayout)
_imageViewer.BackColor = Color.Bisque
_imageViewer.Dock = DockStyle.Fill
_imageViewer.BringToFront()
_imageViewer.Name = "_imageViewer"
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