←Select platform

ViewStyle Property

Summary

Gets or sets how items are displayed in the control.

Syntax

C#
VB
C++
public RasterImageListViewStyle ViewStyle { get; set; } 
Public Property ViewStyle As Leadtools.Winforms.RasterImageListViewStyle 

Property Value

A RasterImageListViewStyle enumeration that specifies how the items are displayed in the control.

Remarks

For more information, refer to the RasterImageListViewStyle enumeration.

Example

C#
VB
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; 
} 
Imports Leadtools.WinForms 
Imports Leadtools 
Imports Leadtools.Codecs 
Imports 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 style 
   Dim currentStyle As RasterImageListViewStyle = imageList.ViewStyle 
 
   ' Show all the different styles available 
   Dim a As Array = System.Enum.GetValues(GetType(RasterImageListViewStyle)) 
   For Each style As RasterImageListViewStyle In a 
      imageList.ViewStyle = style 
      MessageBox.Show("ViewStyle = " & style.ToString()) 
   Next style 
 
   ' Restore original view style 
   imageList.ViewStyle = currentStyle 
End Sub 

Requirements

Target Platforms

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.WinForms Assembly