C#
VB
C++
Initializes a new ImageViewer with the specified layout
public ImageViewer(ImageViewerViewLayout viewLayout)
Public Sub New() public:ImageViewer()
viewLayout
Default view layout to use. Must not be null.
This constructor will set the value of viewLayout in the ViewLayout property.
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;_imageViewer = new ImageViewer(new ImageViewerVerticalViewLayout { Columns = 1 });_imageViewer.BackColor = Color.Bisque;_imageViewer.Dock = DockStyle.Fill;_imageViewer.BringToFront();_imageViewer.Name = "_imageViewer";
Imports LeadtoolsImports Leadtools.ControlsImports Leadtools.CodecsImports Leadtools.DrawingImports Leadtools.ImageProcessingImports Leadtools.ImageProcessing.ColorImports LeadtoolsControlsExamples.LeadtoolsExamples.CommonDim viewLayout As New ImageViewerVerticalViewLayoutviewLayout.Columns = 1_imageViewer = New ImageViewer(viewLayout)_imageViewer.BackColor = Color.Bisque_imageViewer.Dock = DockStyle.Fill_imageViewer.BringToFront()_imageViewer.Name = "_imageViewer"
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET
