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

RemoveCore() 개인적인 메소드

private RemoveCore ( int index ) : bool
index int
리턴 bool
			internal bool RemoveCore (int index)
			{
				int idx = IndexOf (index);
				if (idx == -1)
					return false;

				selection.RemoveAt (idx);
				owner.InvalidateItem (index);

#if NET_2_0
				// UIA Framework event: Selected item removed from selection
				OnUIACollectionChangedEvent (new CollectionChangeEventArgs (CollectionChangeAction.Remove, index));
#endif 


				return true;
			}