C#
VB
C++
Gets or sets how items are displayed in the control.
public RasterImageListViewStyle ViewStyle { get; set; } Public Property ViewStyle As Leadtools.Winforms.RasterImageListViewStyle public:property Leadtools.Winforms.RasterImageListViewStyle ViewStyle {Leadtools.Winforms.RasterImageListViewStyle get();void set ( Leadtools.Winforms.RasterImageListViewStyle );}
A RasterImageListViewStyle enumeration that specifies how the items are displayed in the control.
For more information, refer to the RasterImageListViewStyle enumeration.
using Leadtools.WinForms;using Leadtools;using Leadtools.Codecs;using Leadtools.Drawing;/// This example will show the different view styles of a <see cref="RasterImageList"/> control.public void RasterImageList_ViewStyle(RasterImageList imageList){// Save the current view styleRasterImageListViewStyle currentStyle = imageList.ViewStyle;// Show all the different styles availableArray a = Enum.GetValues(typeof(RasterImageListViewStyle));foreach (RasterImageListViewStyle style in a){imageList.ViewStyle = style;MessageBox.Show("ViewStyle = " + style.ToString());}// Restore original view styleimageList.ViewStyle = currentStyle;}
Imports Leadtools.WinFormsImports LeadtoolsImports Leadtools.CodecsImports Leadtools.Drawing''' This example will show the different view styles of a <see cref="RasterImageList"/> control.Public Sub RasterImageList_ViewStyle(ByVal imageList As RasterImageList)' Save the current view styleDim currentStyle As RasterImageListViewStyle = imageList.ViewStyle' Show all the different styles availableDim a As Array = System.Enum.GetValues(GetType(RasterImageListViewStyle))For Each style As RasterImageListViewStyle In aimageList.ViewStyle = styleMessageBox.Show("ViewStyle = " & style.ToString())Next style' Restore original view styleimageList.ViewStyle = currentStyleEnd Sub
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
