System.Windows.Forms.ListBox.RefreshItem C# (CSharp) 메소드

RefreshItem() 보호된 메소드

protected RefreshItem ( int index ) : void
index int
리턴 void
		protected override void RefreshItem (int index)
		{
			if (index < 0 || index >= Items.Count)
				throw new ArgumentOutOfRangeException ("Index of out range");
				
			if (draw_mode == DrawMode.OwnerDrawVariable)
				item_heights.Remove (Items [index]);
		}