Products | Support | Email a link to this topic. | Send comments on this topic. | Back to Introduction - All Topics | Help Version 19.0.4.3
|
Leadtools.Controls Assembly > Leadtools.Controls Namespace > ImageViewer Class > ImageViewer Constructor : ImageViewer Constructor(ImageViewerViewLayout) |
public ImageViewer( ImageViewerViewLayout viewLayout )
'Declaration
Public Function New( _ ByVal viewLayout As ImageViewerViewLayout _ )
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.
Imports Leadtools Imports Leadtools.Controls Imports Leadtools.Codecs Imports Leadtools.Drawing Imports Leadtools.ImageProcessing Imports Leadtools.ImageProcessing.Color 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"
using Leadtools; using Leadtools.Controls; using Leadtools.Codecs; using Leadtools.Drawing; 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";