←Select platform

ImageViewer Constructor(ImageViewerViewLayout)

Summary

Initializes a new ImageViewer with the specified layout

Syntax
C#
VB
C++
Public Sub New() 
public:  
   ImageViewer() 

Parameters

viewLayout

Default view layout to use. Must not be null.

Remarks

This constructor will set the value of viewLayout in the ViewLayout property.

Example

This example will create a new instance of ImageViewer using a vertical layout. Then adds a few items to it.

C#
VB
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 

Requirements

Target Platforms

Help Version 20.0.2020.4.3
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2020 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Controls Assembly