Show / Hide Table of Contents

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 Source

GroupInfo(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 Source

Name

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
| Improve this Doc View Source

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
Back to top Copyright © 2018 Özgür Özçıtak