Leadtools.WinForms Namespace > RasterImageList Class : ViewStyle Property |
[DescriptionAttribute("Selects one of the available views this control supports.")] [CategoryAttribute("Appearance")] public RasterImageListViewStyle ViewStyle {get; set;}
'Declaration <DescriptionAttribute("Selects one of the available views this control supports.")> <CategoryAttribute("Appearance")> Public Property ViewStyle As RasterImageListViewStyle
'Usage Dim instance As RasterImageList Dim value As RasterImageListViewStyle instance.ViewStyle = value value = instance.ViewStyle
[DescriptionAttribute("Selects one of the available views this control supports.")] [CategoryAttribute("Appearance")] public RasterImageListViewStyle ViewStyle {get; set;}
DescriptionAttribute("Selects one of the available views this control supports.") CategoryAttribute("Appearance") get_ViewStyle();
set_ViewStyle(value);
[DescriptionAttribute("Selects one of the available views this control supports.")] [CategoryAttribute("Appearance")] public: property RasterImageListViewStyle ViewStyle { RasterImageListViewStyle get(); void set ( RasterImageListViewStyle value); }
''' 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
/// 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; }
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2