Version

HotTracking Property (UltraListViewItem)

Gets/sets whether this UltraListViewItem objects exhibits hot tracking effects when the cursor passes within the bounds of its UIElement.
Syntax
'Declaration
 
Public Property HotTracking As Infragistics.Win.DefaultableBoolean
public Infragistics.Win.DefaultableBoolean HotTracking {get; set;}
Example
The followingcode sample demonstrates how to disable the hot tracking effects for a specific UltraListViewItem:

Imports Infragistics.Win
Imports Infragistics.Win.UltraWinListView

    Private Sub ultraListView1_ItemCheckStateChanged(ByVal sender As Object, ByVal e As Infragistics.Win.UltraWinListView.ItemCheckStateChangedEventArgs) Handles ultraListView1.ItemCheckStateChanged

        '	Disable the hot tracking effects for unchecked items
        If e.Item.CheckState = CheckState.Unchecked Then
            e.Item.HotTracking = DefaultableBoolean.False
        Else
            e.Item.HotTracking = DefaultableBoolean.True
        End If

    End Sub
using Infragistics.Win;
using Infragistics.Win.UltraWinListView;
using System.Diagnostics;


		private void ultraListView1_ItemCheckStateChanged(object sender, Infragistics.Win.UltraWinListView.ItemCheckStateChangedEventArgs e)
		{
			//	Disable the hot tracking effects for unchecked items
			if ( e.Item.CheckState == CheckState.Unchecked )
				e.Item.HotTracking = DefaultableBoolean.False;
			else
				e.Item.HotTracking = DefaultableBoolean.True;
		}
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also