Gets or sets how items are displayed in the control.
public RasterImageListViewStyle ViewStyle { get; set; }
public:
property RasterImageListViewStyle ViewStyle {
RasterImageListViewStyle get();
void set ( RasterImageListViewStyle );
}
public:
property RasterImageListViewStyle^ ViewStyle
{
RasterImageListViewStyle^ get()
void set(RasterImageListViewStyle^ value)
}
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 style
RasterImageListViewStyle currentStyle = imageList.ViewStyle;
// Show all the different styles available
Array a = Enum.GetValues(typeof(RasterImageListViewStyle));
foreach (RasterImageListViewStyle style in a)
{
imageList.ViewStyle = style;
MessageBox.Show("ViewStyle = " + style.ToString());
}
// Restore original view style
imageList.ViewStyle = currentStyle;
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document