System.Windows.Forms.ListBox.InvalidateItem C# (CSharp) Méthode

InvalidateItem() private méthode

private InvalidateItem ( int index ) : void
index int
Résultat void
		internal void InvalidateItem (int index)
		{
			if (!IsHandleCreated)
				return;
			Rectangle bounds = GetItemDisplayRectangle (index, top_index);
			if (ClientRectangle.IntersectsWith (bounds))
				Invalidate (bounds);
		}