System.Windows.Forms.ListBox.InvalidateItem C# (CSharp) Метод

InvalidateItem() приватный Метод

private InvalidateItem ( int index ) : void
index int
Результат void
		internal void InvalidateItem (int index)
		{
			if (!IsHandleCreated)
				return;
			Rectangle bounds = GetItemDisplayRectangle (index, top_index);
			if (ClientRectangle.IntersectsWith (bounds))
				Invalidate (bounds);
		}