Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebControls / TableRowCollection.cs / 1305376 / TableRowCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.Collections; using System.ComponentModel; using System.Drawing.Design; using System.Web; using System.Web.UI; ////// [ Editor("System.Web.UI.Design.WebControls.TableRowsCollectionEditor, " + AssemblyRef.SystemDesign, typeof(UITypeEditor)) ] public sealed class TableRowCollection : IList { ///Encapsulates the collection of ///objects within a control. /// A protected field of type private Table owner; ///. Represents the collection internally. /// /// internal TableRowCollection(Table owner) { this.owner = owner; } ////// Gets the /// count of public int Count { get { if (owner.HasControls()) { return owner.Controls.Count; } return 0; } } ///in the collection. /// /// public TableRow this[int index] { get { return(TableRow)owner.Controls[index]; } } ////// Gets a ///referenced by the /// specified ordinal index value. /// /// public int Add(TableRow row) { AddAt(-1, row); return owner.Controls.Count - 1; } ////// Adds the specified ///to the end of the collection. /// /// public void AddAt(int index, TableRow row) { owner.Controls.AddAt(index, row); if (row.TableSection != TableRowSection.TableBody) { owner.HasRowSections = true; } } ////// Adds the specified ///to the collection at the specified /// index location. /// /// public void AddRange(TableRow[] rows) { if (rows == null) { throw new ArgumentNullException("rows"); } foreach(TableRow row in rows) { Add(row); } } ////// public void Clear() { if (owner.HasControls()) { owner.Controls.Clear(); owner.HasRowSections = false; } } ///Removes all ///controls from the collection. /// public int GetRowIndex(TableRow row) { if (owner.HasControls()) { return owner.Controls.IndexOf(row); } return -1; } ///Returns an ordinal index value that denotes the position of the specified /// ///within the collection. /// public IEnumerator GetEnumerator() { return owner.Controls.GetEnumerator(); } ////// Returns an enumerator of all ///controls within the /// collection. /// /// public void CopyTo(Array array, int index) { for (IEnumerator e = this.GetEnumerator(); e.MoveNext();) array.SetValue(e.Current, index++); } ///Copies contents from the collection to the specified ///with the /// specified starting index. /// public Object SyncRoot { get { return this;} } ////// Gets the object that can be used to synchronize access to the collection. In /// this case, it is the collection itself. /// ////// public bool IsReadOnly { get { return false;} } ////// Gets a value indicating whether the collection is read-only. /// ////// public bool IsSynchronized { get { return false;} } ////// Gets a value indicating whether access to the collection is synchronized /// (thread-safe). /// ////// public void Remove(TableRow row) { owner.Controls.Remove(row); } ///Removes the specified ///from the collection. /// public void RemoveAt(int index) { owner.Controls.RemoveAt(index); } // IList implementation, required by collection editor ///Removes the ///from the collection at the specified /// index location. object IList.this[int index] { get { return owner.Controls[index]; } set { RemoveAt(index); AddAt(index, (TableRow)value); } } /// bool IList.IsFixedSize { get { return false; } } /// int IList.Add(object o) { return Add((TableRow) o); } /// bool IList.Contains(object o) { return owner.Controls.Contains((TableRow)o); } /// int IList.IndexOf(object o) { return owner.Controls.IndexOf((TableRow)o); } /// void IList.Insert(int index, object o) { AddAt(index, (TableRow)o); } /// void IList.Remove(object o) { Remove((TableRow)o); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.Collections; using System.ComponentModel; using System.Drawing.Design; using System.Web; using System.Web.UI; ////// [ Editor("System.Web.UI.Design.WebControls.TableRowsCollectionEditor, " + AssemblyRef.SystemDesign, typeof(UITypeEditor)) ] public sealed class TableRowCollection : IList { ///Encapsulates the collection of ///objects within a control. /// A protected field of type private Table owner; ///. Represents the collection internally. /// /// internal TableRowCollection(Table owner) { this.owner = owner; } ////// Gets the /// count of public int Count { get { if (owner.HasControls()) { return owner.Controls.Count; } return 0; } } ///in the collection. /// /// public TableRow this[int index] { get { return(TableRow)owner.Controls[index]; } } ////// Gets a ///referenced by the /// specified ordinal index value. /// /// public int Add(TableRow row) { AddAt(-1, row); return owner.Controls.Count - 1; } ////// Adds the specified ///to the end of the collection. /// /// public void AddAt(int index, TableRow row) { owner.Controls.AddAt(index, row); if (row.TableSection != TableRowSection.TableBody) { owner.HasRowSections = true; } } ////// Adds the specified ///to the collection at the specified /// index location. /// /// public void AddRange(TableRow[] rows) { if (rows == null) { throw new ArgumentNullException("rows"); } foreach(TableRow row in rows) { Add(row); } } ////// public void Clear() { if (owner.HasControls()) { owner.Controls.Clear(); owner.HasRowSections = false; } } ///Removes all ///controls from the collection. /// public int GetRowIndex(TableRow row) { if (owner.HasControls()) { return owner.Controls.IndexOf(row); } return -1; } ///Returns an ordinal index value that denotes the position of the specified /// ///within the collection. /// public IEnumerator GetEnumerator() { return owner.Controls.GetEnumerator(); } ////// Returns an enumerator of all ///controls within the /// collection. /// /// public void CopyTo(Array array, int index) { for (IEnumerator e = this.GetEnumerator(); e.MoveNext();) array.SetValue(e.Current, index++); } ///Copies contents from the collection to the specified ///with the /// specified starting index. /// public Object SyncRoot { get { return this;} } ////// Gets the object that can be used to synchronize access to the collection. In /// this case, it is the collection itself. /// ////// public bool IsReadOnly { get { return false;} } ////// Gets a value indicating whether the collection is read-only. /// ////// public bool IsSynchronized { get { return false;} } ////// Gets a value indicating whether access to the collection is synchronized /// (thread-safe). /// ////// public void Remove(TableRow row) { owner.Controls.Remove(row); } ///Removes the specified ///from the collection. /// public void RemoveAt(int index) { owner.Controls.RemoveAt(index); } // IList implementation, required by collection editor ///Removes the ///from the collection at the specified /// index location. object IList.this[int index] { get { return owner.Controls[index]; } set { RemoveAt(index); AddAt(index, (TableRow)value); } } /// bool IList.IsFixedSize { get { return false; } } /// int IList.Add(object o) { return Add((TableRow) o); } /// bool IList.Contains(object o) { return owner.Controls.Contains((TableRow)o); } /// int IList.IndexOf(object o) { return owner.Controls.IndexOf((TableRow)o); } /// void IList.Insert(int index, object o) { AddAt(index, (TableRow)o); } /// void IList.Remove(object o) { Remove((TableRow)o); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- AstTree.cs
- WebServiceEnumData.cs
- PagesSection.cs
- XmlSchema.cs
- EnterpriseServicesHelper.cs
- lengthconverter.cs
- FlowDocumentPaginator.cs
- TextWriter.cs
- TextElementCollectionHelper.cs
- SourceInterpreter.cs
- DmlSqlGenerator.cs
- ViewStateAttachedPropertyFeature.cs
- ValidatorUtils.cs
- MethodCallConverter.cs
- SemaphoreSecurity.cs
- NativeMethods.cs
- CollectionAdapters.cs
- AttachmentCollection.cs
- HMAC.cs
- COM2ComponentEditor.cs
- ResolveRequestResponseAsyncResult.cs
- Rotation3D.cs
- Geometry.cs
- RepeatBehavior.cs
- SystemIPGlobalStatistics.cs
- SqlCacheDependencyDatabase.cs
- DESCryptoServiceProvider.cs
- MSAAEventDispatcher.cs
- UiaCoreTypesApi.cs
- EventProperty.cs
- DataSourceXmlSerializationAttribute.cs
- DeferredSelectedIndexReference.cs
- CollectionBase.cs
- LocalServiceSecuritySettingsElement.cs
- WindowsListViewItemStartMenu.cs
- WebPartsSection.cs
- DiscoveryDocumentLinksPattern.cs
- ServiceInfoCollection.cs
- IndexingContentUnit.cs
- TextRangeEditTables.cs
- InfoCardConstants.cs
- _FixedSizeReader.cs
- DataGridViewCellStyleConverter.cs
- DataGridViewCellErrorTextNeededEventArgs.cs
- SaveFileDialog.cs
- HtmlControl.cs
- Splitter.cs
- WebPartEditVerb.cs
- SqlUtils.cs
- CustomBindingCollectionElement.cs
- DBDataPermissionAttribute.cs
- MergeFailedEvent.cs
- FontFamilyValueSerializer.cs
- BufferedStream.cs
- ClockController.cs
- CultureInfoConverter.cs
- Filter.cs
- TransformerInfoCollection.cs
- EntityParameterCollection.cs
- PropertyInformationCollection.cs
- BmpBitmapDecoder.cs
- CompilationUtil.cs
- CodeMemberEvent.cs
- ColorAnimationBase.cs
- MainMenu.cs
- AmbientLight.cs
- SiteOfOriginPart.cs
- CorruptingExceptionCommon.cs
- EntityConnection.cs
- WsatServiceCertificate.cs
- CompositionAdorner.cs
- StreamWriter.cs
- SystemIPInterfaceProperties.cs
- PersistenceProviderDirectory.cs
- iisPickupDirectory.cs
- FontTypeConverter.cs
- ObjectListGeneralPage.cs
- SqlCaseSimplifier.cs
- FormatterServices.cs
- WindowsScroll.cs
- PerformanceCounterCategory.cs
- IsolatedStoragePermission.cs
- InvalidateEvent.cs
- TextDecorationCollection.cs
- VirtualizingPanel.cs
- ReadOnlyObservableCollection.cs
- OperationCanceledException.cs
- DayRenderEvent.cs
- GcSettings.cs
- ISFClipboardData.cs
- XmlChoiceIdentifierAttribute.cs
- LineProperties.cs
- TabPanel.cs
- RegexCode.cs
- Speller.cs
- ZoneIdentityPermission.cs
- Size.cs
- SQLDateTime.cs
- InfiniteTimeSpanConverter.cs
- PeerNameRecord.cs