property Items.ItemItalic(Item as HITEM) as Boolean

Retrieves or sets a value that indicates whether the item should appear in italic.

TypeDescription
Item as HITEM A long expression that indicates the item's handle that uses italic font attribute.
Boolean A boolean expression that indicates whether the item should appear in italic.

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 CellCaptionFormat 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 makes italic the selected item:

Private Sub Gantt1_SelectionChanged()
    If Not (h = 0) Then Gantt1.Items.ItemItalic(h) = False
    h = Gantt1.Items.SelectedItem()
    Gantt1.Items.ItemItalic(h) = True
End Sub

The following VB sample makes italic the focused item:

With Gantt1.Items
    .ItemItalic(.FocusItem) = True
End With

The following C++ sample makes italic the focused item:

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

The following C# sample makes italic the focused item:

axGantt1.Items.set_ItemItalic(axGantt1.Items.FocusItem, true);

The following VB.NET sample makes italic the focused item:

With AxGantt1.Items
    .ItemItalic(.FocusItem) = True
End With

The following VFP sample makes italic the focused item:

with thisform.Gantt1.Items
	.DefaultItem = .FocusItem
	.ItemItalic( 0 ) = .t.
endwith