Leadtools.WinForms Send comments on this topic. | Back to Introduction - All Topics | Help Version 15.8.31
ViewStyle Property
See Also  Example
Leadtools.WinForms Namespace > RasterImageList Class : ViewStyle Property




Gets or sets how items are displayed in the control.

Syntax

Visual Basic (Declaration) 
<CategoryAttribute("Appearance")>
<DescriptionAttribute("Selects one of the available views this control supports.")>
Public Property ViewStyle As RasterImageListViewStyle
Visual Basic (Usage)Copy Code
Dim instance As RasterImageList
Dim value As RasterImageListViewStyle
 
instance.ViewStyle = value
 
value = instance.ViewStyle
C# 
[CategoryAttribute("Appearance")]
[DescriptionAttribute("Selects one of the available views this control supports.")]
public RasterImageListViewStyle ViewStyle {get; set;}
Managed Extensions for C++ 
[CategoryAttribute("Appearance")]
[DescriptionAttribute("Selects one of the available views this control supports.")]
public: __property RasterImageListViewStyle get_ViewStyle();
public: __property void set_ViewStyle( 
   RasterImageListViewStyle value
);
C++/CLI 
[CategoryAttribute("Appearance")]
[DescriptionAttribute("Selects one of the available views this control supports.")]
public:
property RasterImageListViewStyle ViewStyle {
   RasterImageListViewStyle get();
   void set (RasterImageListViewStyle value);
}

Return Value

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

Example

Visual BasicCopy Code
''' 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
C#Copy Code
/// 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; 
}

Remarks

For more information, refer to the RasterImageListViewStyle enumeration.

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also