Unit 'MUIClass.Group' Package
[Overview][Classes][Index] [#MUIClass]

TMUIListView.List

Every listview needs a list object defined here as child.

Declaration

Source position: MUIClass.Group.pas line 104

published property TMUIListView.List : TMUIList
  read FList
  write SetList;

Description

As every other child, it will get disposes when its parent object is disposed.

Example:

ListView := TMUIListView.Create;
with ListView do
begin
  Background.Spec := MUIV_Frame_ReadList;
  List := TMUIList.Create;
  List.Input := False;
  List.Format := ',,';
  Parent := ins.Group.TMUIGroup
end;

Documentation generated on: 2024-04-24