Struct ImageListView.GroupInfo
Represents ordering and name information for a group.
Inherited Members
System.ValueType.Equals(System.Object)
System.ValueType.GetHashCode()
System.ValueType.ToString()
Namespace: Manina.Windows.Forms
Assembly: ImageListView.dll
Syntax
public struct GroupInfo
Constructors
| Improve this Doc View SourceGroupInfo(String, Int32)
Initializes a new instance of the GroupInfo class.
Declaration
public GroupInfo(string name, int order)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | Display name of the group. |
System.Int32 | order | Order of the group. |
Properties
| Improve this Doc View SourceName
The display name of the group. Items with the same group name will be collected and displayed under the same group.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Order
The order of group. A group with a lower order number will be displayed above other groups when sorted in ascending order.
Declaration
public int Order { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |