Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / WebControls / ColumnCollection.cs / 1 / ColumnCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.Collections; using System.ComponentModel; using System.Web.UI; using System.Security.Permissions; ////// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class DataGridColumnCollection : ICollection, IStateManager { private DataGrid owner; private ArrayList columns; private bool marked; ///Represents the collection of columns to be displayed in /// a ////// control. /// public DataGridColumnCollection(DataGrid owner, ArrayList columns) { this.owner = owner; this.columns = columns; } ///Initializes a new instance of ///class. /// [ Browsable(false) ] public int Count { get { return columns.Count; } } ///Gets the number of columns in the collection. This property is read-only. ////// [ Browsable(false) ] public bool IsReadOnly { get { return false; } } ///Gets a value that specifies whether items in the ///can be /// modified. This property is read-only. /// [ Browsable(false) ] public bool IsSynchronized { get { return false; } } ///Gets a value that indicates whether the ///is thread-safe. This property is read-only. /// [ Browsable(false) ] public Object SyncRoot { get { return this; } } ///Gets the object used to synchronize access to the collection. This property is read-only. ////// [ Browsable(false) ] public DataGridColumn this[int index] { get { return (DataGridColumn)columns[index]; } } ///Gets a ///at the specified index in the /// collection. /// public void Add(DataGridColumn column) { AddAt(-1, column); } ///Appends a ///to the collection. /// public void AddAt(int index, DataGridColumn column) { if (column == null) { throw new ArgumentNullException("column"); } if (index == -1) { columns.Add(column); } else { columns.Insert(index, column); } column.SetOwner(owner); if (marked) ((IStateManager)column).TrackViewState(); OnColumnsChanged(); } ///Inserts a ///to the collection /// at the specified index. /// public void Clear() { columns.Clear(); OnColumnsChanged(); } ///Empties the collection of all ///objects. /// public void CopyTo(Array array, int index) { if (array == null) { throw new ArgumentNullException("array"); } for (IEnumerator e = this.GetEnumerator(); e.MoveNext();) array.SetValue(e.Current, index++); } ///Copies the contents of the entire collection into an ///appending at /// the specified index of the . /// public IEnumerator GetEnumerator() { return columns.GetEnumerator(); } ///Creates an enumerator for the ///used to iterate through the collection. /// public int IndexOf(DataGridColumn column) { if (column != null) { return columns.IndexOf(column); } return -1; } ///Returns the index of the first occurrence of a value in a ///. /// private void OnColumnsChanged() { if (owner != null) { owner.OnColumnsChanged(); } } ////// public void RemoveAt(int index) { if ((index >= 0) && (index < Count)) { columns.RemoveAt(index); OnColumnsChanged(); } else { throw new ArgumentOutOfRangeException("index"); } } ///Removes a ///from the collection at the specified /// index. /// public void Remove(DataGridColumn column) { int index = IndexOf(column); if (index >= 0) { RemoveAt(index); } } ///Removes the specified ///from the collection. /// /// Return true if tracking state changes. /// bool IStateManager.IsTrackingViewState { get { return marked; } } ////// /// Load previously saved state. /// void IStateManager.LoadViewState(object savedState) { if (savedState != null) { object[] columnsState = (object[])savedState; if (columnsState.Length == columns.Count) { for (int i = 0; i < columnsState.Length; i++) { if (columnsState[i] != null) { ((IStateManager)columns[i]).LoadViewState(columnsState[i]); } } } } } ////// /// Start tracking state changes. /// void IStateManager.TrackViewState() { marked = true; int columnCount = columns.Count; for (int i = 0; i < columnCount; i++) { ((IStateManager)columns[i]).TrackViewState(); } } ////// /// Return object containing state changes. /// object IStateManager.SaveViewState() { int columnCount = columns.Count; object[] columnsState = new object[columnCount]; bool savedState = false; for (int i = 0; i < columnCount; i++) { columnsState[i] = ((IStateManager)columns[i]).SaveViewState(); if (columnsState[i] != null) savedState = true; } return savedState ? columnsState : null; } } } // 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
- CodeTypeOfExpression.cs
- ProjectionCamera.cs
- BufferedReadStream.cs
- StyleTypedPropertyAttribute.cs
- VideoDrawing.cs
- ContentPropertyAttribute.cs
- HttpHeaderCollection.cs
- ManagementObject.cs
- ToolboxComponentsCreatedEventArgs.cs
- ProxyWebPartManager.cs
- ContextQuery.cs
- EventRouteFactory.cs
- PersonalizationEntry.cs
- DataStreamFromComStream.cs
- PowerStatus.cs
- WebPartDisplayMode.cs
- BeginStoryboard.cs
- KnownIds.cs
- MethodExpr.cs
- PackageProperties.cs
- XmlSchemaSimpleContentExtension.cs
- ReadOnlyTernaryTree.cs
- PackagingUtilities.cs
- BitStack.cs
- PlanCompilerUtil.cs
- ErrorWebPart.cs
- TextRangeProviderWrapper.cs
- XmlNodeWriter.cs
- AddInServer.cs
- FloaterParaClient.cs
- ZipArchive.cs
- URLAttribute.cs
- Matrix3D.cs
- InstancePersistence.cs
- CalendarDay.cs
- ObjectViewEntityCollectionData.cs
- SourceItem.cs
- ChineseLunisolarCalendar.cs
- DataBindEngine.cs
- CompileLiteralTextParser.cs
- TextTreeTextNode.cs
- XmlSerializerOperationFormatter.cs
- TraceProvider.cs
- PrintPreviewDialog.cs
- RepeatButtonAutomationPeer.cs
- ParameterToken.cs
- WpfKnownTypeInvoker.cs
- BaseDataList.cs
- NegationPusher.cs
- Stroke.cs
- XmlReaderSettings.cs
- DataGridViewCheckBoxColumn.cs
- MimeMapping.cs
- InkPresenter.cs
- _ContextAwareResult.cs
- RadioButtonStandardAdapter.cs
- WebPartTransformer.cs
- Visual3D.cs
- XpsPackagingException.cs
- HiddenField.cs
- RuntimeConfig.cs
- Adorner.cs
- keycontainerpermission.cs
- XmlSchemaAppInfo.cs
- NavigationFailedEventArgs.cs
- FixedSOMLineRanges.cs
- Brush.cs
- XmlSchemaDocumentation.cs
- CodeSubDirectoriesCollection.cs
- NTAccount.cs
- storagemappingitemcollection.viewdictionary.cs
- OleDbConnectionInternal.cs
- HighlightVisual.cs
- ListManagerBindingsCollection.cs
- sqlser.cs
- FactoryGenerator.cs
- ControlValuePropertyAttribute.cs
- OdbcDataAdapter.cs
- DoubleLinkList.cs
- ExtensionSurface.cs
- SqlWebEventProvider.cs
- XmlReflectionImporter.cs
- TypeUtil.cs
- COM2Enum.cs
- EnvironmentPermission.cs
- AppManager.cs
- ExpandCollapsePattern.cs
- Style.cs
- HtmlTextBoxAdapter.cs
- GPRECT.cs
- ConfigXmlWhitespace.cs
- JoinGraph.cs
- StrokeNodeOperations2.cs
- UnsafeNativeMethodsPenimc.cs
- Geometry.cs
- ContentDisposition.cs
- SocketElement.cs
- CompilationLock.cs
- Psha1DerivedKeyGenerator.cs
- ServicePointManager.cs