Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / WinForms / Managed / System / WinForms / DataGridViewSelectedCellCollection.cs / 1 / DataGridViewSelectedCellCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System.Diagnostics; using System; using System.Collections; using System.Windows.Forms; using System.ComponentModel; using System.Globalization; using System.Diagnostics.CodeAnalysis; ////// /// [ ListBindable(false), SuppressMessage("Microsoft.Design", "CA1010:CollectionsShouldImplementGenericInterface") // Consider adding an IListRepresents a collection of selected ///objects in the /// control. implementation ] public class DataGridViewSelectedCellCollection : BaseCollection, IList { ArrayList items = new ArrayList(); /// /// int IList.Add(object value) { throw new NotSupportedException(SR.GetString(SR.DataGridView_ReadOnlyCollection)); } /// /// void IList.Clear() { throw new NotSupportedException(SR.GetString(SR.DataGridView_ReadOnlyCollection)); } /// /// bool IList.Contains(object value) { return this.items.Contains(value); } /// /// int IList.IndexOf(object value) { return this.items.IndexOf(value); } /// /// void IList.Insert(int index, object value) { throw new NotSupportedException(SR.GetString(SR.DataGridView_ReadOnlyCollection)); } /// /// void IList.Remove(object value) { throw new NotSupportedException(SR.GetString(SR.DataGridView_ReadOnlyCollection)); } /// /// void IList.RemoveAt(int index) { throw new NotSupportedException(SR.GetString(SR.DataGridView_ReadOnlyCollection)); } /// /// bool IList.IsFixedSize { get { return true; } } /// /// bool IList.IsReadOnly { get { return true; } } /// /// object IList.this[int index] { get { return this.items[index]; } set { throw new NotSupportedException(SR.GetString(SR.DataGridView_ReadOnlyCollection)); } } /// /// void ICollection.CopyTo(Array array, int index) { this.items.CopyTo(array, index); } /// /// int ICollection.Count { get { return this.items.Count; } } /// /// bool ICollection.IsSynchronized { get { return false; } } /// /// object ICollection.SyncRoot { get { return this; } } /// /// IEnumerator IEnumerable.GetEnumerator() { return this.items.GetEnumerator(); } internal DataGridViewSelectedCellCollection() { } /// protected override ArrayList List { get { return this.items; } } /// public DataGridViewCell this[int index] { get { return (DataGridViewCell) this.items[index]; } } /// /// /// internal int Add(DataGridViewCell dataGridViewCell) { Debug.Assert(!Contains(dataGridViewCell)); return this.items.Add(dataGridViewCell); } /* Not used for now internal void AddRange(DataGridViewCell[] dataGridViewCells) { Debug.Assert(dataGridViewCells != null); foreach(DataGridViewCell dataGridViewCell in dataGridViewCells) { Debug.Assert(!Contains(dataGridViewCell)); this.items.Add(dataGridViewCell); } } internal void AddCellCollection(DataGridViewSelectedCellCollection dataGridViewCells) { Debug.Assert(dataGridViewCells != null); foreach(DataGridViewCell dataGridViewCell in dataGridViewCells) { Debug.Assert(!Contains(dataGridViewCell)); this.items.Add(dataGridViewCell); } } */ ///Adds a ///to this collection. /// /// internal void AddCellLinkedList(DataGridViewCellLinkedList dataGridViewCells) { Debug.Assert(dataGridViewCells != null); foreach (DataGridViewCell dataGridViewCell in dataGridViewCells) { Debug.Assert(!Contains(dataGridViewCell)); this.items.Add(dataGridViewCell); } } ///Adds all the ///objects from the provided linked list to this collection. [ EditorBrowsable(EditorBrowsableState.Never) ] public void Clear() { throw new NotSupportedException(SR.GetString(SR.DataGridView_ReadOnlyCollection)); } /// /// /// Checks to see if a DataGridViewCell is contained in this collection. /// public bool Contains(DataGridViewCell dataGridViewCell) { return this.items.IndexOf(dataGridViewCell) != -1; } ///public void CopyTo(DataGridViewCell[] array, int index) { this.items.CopyTo(array, index); } /// [ EditorBrowsable(EditorBrowsableState.Never), SuppressMessage("Microsoft.Performance", "CA1801:AvoidUnusedParameters") ] public void Insert(int index, DataGridViewCell dataGridViewCell) { throw new NotSupportedException(SR.GetString(SR.DataGridView_ReadOnlyCollection)); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ComPlusAuthorization.cs
- SafeFileMappingHandle.cs
- WebServiceHandler.cs
- oledbmetadatacollectionnames.cs
- PackageRelationshipCollection.cs
- EncodedStreamFactory.cs
- DecimalConstantAttribute.cs
- VideoDrawing.cs
- ArraySet.cs
- XmlSchemaObject.cs
- XPathDescendantIterator.cs
- XmlDocumentViewSchema.cs
- TaskCanceledException.cs
- UInt64Storage.cs
- OpenTypeLayout.cs
- CaseInsensitiveHashCodeProvider.cs
- BitmapEffectCollection.cs
- OAVariantLib.cs
- XmlSchemaIdentityConstraint.cs
- StringInfo.cs
- DynamicControl.cs
- XmlReflectionImporter.cs
- AlternationConverter.cs
- FileAuthorizationModule.cs
- XmlReaderSettings.cs
- Row.cs
- CapabilitiesSection.cs
- WCFServiceClientProxyGenerator.cs
- OutputCacheProfile.cs
- NonSerializedAttribute.cs
- ChildrenQuery.cs
- DataObjectEventArgs.cs
- NavigatorInvalidBodyAccessException.cs
- ValueQuery.cs
- DBSqlParserColumn.cs
- ManagementClass.cs
- DashStyles.cs
- ChildDocumentBlock.cs
- FormViewInsertEventArgs.cs
- ActivityExecutorSurrogate.cs
- graph.cs
- HttpListener.cs
- WebPartPersonalization.cs
- METAHEADER.cs
- _SpnDictionary.cs
- FrameworkContentElementAutomationPeer.cs
- X509CertificateValidationMode.cs
- SQLBinary.cs
- CompiledScopeCriteria.cs
- CrossAppDomainChannel.cs
- MimeObjectFactory.cs
- OSFeature.cs
- ListItemsPage.cs
- XmlNode.cs
- CompressedStack.cs
- DataObjectFieldAttribute.cs
- ExpressionBindingCollection.cs
- FontWeightConverter.cs
- HtmlButton.cs
- FixedSOMPageElement.cs
- wgx_render.cs
- NavigatorInput.cs
- CodeGroup.cs
- ColumnTypeConverter.cs
- WebPartActionVerb.cs
- UndoManager.cs
- RSAOAEPKeyExchangeFormatter.cs
- MenuTracker.cs
- HttpResponse.cs
- ExtensionWindowHeader.cs
- ProxySimple.cs
- UrlPath.cs
- StylusShape.cs
- Wrapper.cs
- HashHelper.cs
- IconBitmapDecoder.cs
- ScrollEvent.cs
- GridSplitterAutomationPeer.cs
- XamlValidatingReader.cs
- ContextQuery.cs
- PrePrepareMethodAttribute.cs
- HtmlHead.cs
- RequestCachePolicy.cs
- DbParameterCollectionHelper.cs
- HostProtectionException.cs
- SystemIdentity.cs
- MailBnfHelper.cs
- Delay.cs
- CodeIndexerExpression.cs
- AsmxEndpointPickerExtension.cs
- SmiTypedGetterSetter.cs
- DataRow.cs
- StandardTransformFactory.cs
- SmtpCommands.cs
- Decorator.cs
- StrongNameMembershipCondition.cs
- Attachment.cs
- SwitchCase.cs
- MemberDescriptor.cs
- CodeChecksumPragma.cs