LISTVIEW

Definition

LISTVIEW [id]
{
  [Flags]
}

Description

A flexible list view. Use the SimpleListView class to wrap the list view, attaching it with GeListView::AttachListView().

Flags

See Dialog Resource for a description of the common flags.

[LAYOUTFLAGS]Layout flags.
[SIZE]Manual size.

Example

GROUP
{
  COLUMNS 2;
  SCALE_H; SCALE_V;

  LISTVIEW IDC_LEFT_LIST { SCALE_H; SCALE_V; SIZE 150,100; };
  LISTVIEW IDC_RIGHT_LIST { SIZE 35,120; };
}

Further Reading