Error processing SSI file
(Leadtools.Controls)

Show in webframe

ImageViewer Constructor(ImageViewerViewLayout)




Default view layout to use. Must not be null.
Initializes a new ImageViewer with the specified layout
Syntax
public ImageViewer( 
   ImageViewerViewLayout viewLayout
)
'Declaration
 
Public Function New( _
   ByVal viewLayout As ImageViewerViewLayout _
)

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.

Copy Code  
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";
Requirements

Target Platforms

See Also

Reference

ImageViewer Class
ImageViewer Members
Overload List

Error processing SSI file