diff --git a/docs/xml/lcl/comctrls.xml b/docs/xml/lcl/comctrls.xml
index 655302734a..e6965edb24 100644
--- a/docs/xml/lcl/comctrls.xml
+++ b/docs/xml/lcl/comctrls.xml
@@ -11885,28 +11885,33 @@ used for the ViewStyle property in TCustomListView.
-A typical application might have two ImageLists: one of
-LargeImages and one of SmallImages containing two
-versions of the same collection of images, in large and small format; the
-index positions in the first image list should correspond to those in the
-second image list.
+A typical application might have two ImageLists: one of LargeImages
+and one of SmallImages containing two versions of the same
+collection of images, in large and small format. The index numbers for images
+in the first list would correspond to the same image with another size in the
+second list. LargeImages are used when the view style is set to vsIcon.
-SmallImages could be displayed beside the text strings in the list view and
-the programmer would supply code to ensure that when an item with its
-associated SmallImage was selected, the corresponding LargeImage would be
-displayed in another window.
+The TImageList instance can be created and populated at design-time
+using the editor available on the content menu in the form designer. It can
+also be created, populated, and assigned at run-time if needed.
-A TImageList control needs to be selected and pasted on to the
-Form Designer and the ImageList Editor can be opened from the pop-up menu
-obtained by right-clicking on TImageList icon in the Form
-Designer. Then in the StringList editor for Items the correct
-ImageIndex must be allocated to each entry in the list.
+Use the LargeImagesWidth property to specify the width for the images in the
+list.
+
+Use the Items property to access and maintain the ImageIndex used for each of
+the list items.
+
+Use ViewStyle to control the layout and content for the list items on the
+control.
ShowColumnHeaders is a Boolean property which indicates
whether column headers are displayed for the Report view style (ViewStyle =
-vsReport). When enabled, the captions for the list Items are
-displayed as column headers. The default value for the property is
+vsReport). When enabled, the captions for the Columns defined for the control
+are displayed as column headers. The default value for the property is
True.
@@ -15733,10 +15750,10 @@ causes the widgetset class to be updated with the new value.
A typical application might have two ImageLists: one of
LargeImages and one of SmallImages containing two
-versions of the same collection of images, in large and small format; the
-index numbers of the first list would correspond with those in the second
+versions of the same collection of images, in large and small format. The
+index numbers for images in the first list would correspond to the same image
+with another size in the second list. SmallImages are displayed beside the text
+strings in the list view, and are used for the vsSmallIcon, vsList, and
+vsReport view styles.
+
+The TImageList instance can be created and populated at design-time
+using the editor available on the content menu in the form designer. It can
+also be created, populated, and assigned at run-time if needed.
+
+Use the SmallImagesWidth property to specify the width for the images in the
list.
-SmallImages could be displayed beside the text strings in the list view and
-the programmer would supply code to ensure that when an item with its
-associated SmallImage was selected, the corresponding LargeImage would be
-displayed in another window.
+Use the Items property to access and maintain the ImageIndex used for each of
+the list items.
-A TImageList control needs to be selected and pasted on to the
-Form Designer and the ImageList Editor can be opened from the pop-up menu
-obtained by right-clicking on TImageList icon in the Form
-Designer. Then in the StringList editor for Items the correct
-ImageIndex must be allocated to each entry in the list.
+Use ViewStyle to control the layout and content for the list items on the
+control.
Text is a TCaption property which contains the textual
-value displayed on the header section. Along with the image specified in
+value displayed on the header section. Along with the image specified in
ImageIndex, it determines the content drawn for the section in the PaintSection
method of the THeaderControl.