Gets or sets how items are displayed in the control.
Syntax
Example
Visual Basic | Copy Code |
---|
Public Sub RasterImageList_ViewStyle(ByVal imageList As RasterImageList)
Dim currentStyle As RasterImageListViewStyle = imageList.ViewStyle
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
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
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