property Items.ItemUnderline(Index as Long) as Boolean
Retrieves or sets a value that indicates whether the item is underlined.

TypeDescription
Index as Long A long expression that indicates the index of the item.
Boolean A boolean expression that indicates whether the item is underlined.

Use ItemBold, ItemItalic, ItemUnderline or ItemStrikeOut property to apply different font attributes to the item. Use the CellItalic, CellUnderline, CellBold or CellStrikeOut property to apply different font attributes to the cell. Use the CaptionFormat property to specify an HTML caption. Use the ConditionalFormats method to apply formats to a cell or range of cells, and have that formatting change depending on the value of the cell or the value of a formula.

The following VB sample underlines the focused item:

With List1.Items
    .ItemUnderline(.FocusItem) = True
End With

The following C++ sample underlines the focused item:

#include "Items.h"
CItems items = m_list.GetItems();
items.SetItemUnderline( items.GetFocusItem() , TRUE );

The following C# sample underlines the focused item:

axList1.Items.set_ItemUnderline(axList1.Items.FocusItem, true);

The following VB.NET sample underlines the focused item:

With AxList1.Items
    .ItemUnderline(.FocusItem) = True
End With

The following VFP sample underlines the focused item:

with thisform.List1.Items
	.ItemUnderline( .FocusItem ) = .t.
endwith