| Visual Basic (Declaration) | |
|---|---|
Public Property ItemsLayout As ImageListViewItemLayout | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As ImageListView Dim value As ImageListViewItemLayout instance.ItemsLayout = value value = instance.ItemsLayout | |
| C# | |
|---|---|
public ImageListViewItemLayout ItemsLayout {get; set;} | |
| Managed Extensions for C++ | |
|---|---|
public: __property ImageListViewItemLayout get_ItemsLayout(); public: __property void set_ItemsLayout( ImageListViewItemLayout value ); | |
| C++/CLI | |
|---|---|
public: property ImageListViewItemLayout ItemsLayout { ImageListViewItemLayout get(); void set ( ImageListViewItemLayout value); } | |
Property Value
The ImageListViewItemLayout value that represents the layout style.- Flow layout - arranges items from left to right and top to bottom.
- Grid layout - arranges items in a rows and columns.
Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7
Copy Code