ListView_ItemMakeVisible()

Examples


The ListView_ItemMakeVisible() function makes the specified item in a list view field visible. If necessary, the contents of the list view field will be scrolled to make the specified item visible.

Syntax

ListView_ItemMakeVisible(list_view_field, item_index)

Parameters

list_view_field – The list view field containing the specified item.

item_index – A long integer specifying the list view item to make visible.

Return value

A boolean indicating whether the item was made visible. True indicates the item was made visible, while false indicates it was not.

Comments

Making an item visible does not select the item. To select the item, use ListView_SelectionSet().


Documentation Feedback