Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / WinForms / System / WinForms / Design / DesignerActionItemCollection.cs / 1 / DesignerActionItemCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.ComponentModel.Design { using System; using System.Collections; ///// /// [tbd] /// public class DesignerActionItemCollection : CollectionBase { public DesignerActionItemCollection() { } public DesignerActionItem this[int index] { get { return (DesignerActionItem)(List[index]); } set { List[index] = value; } } public int Add(DesignerActionItem value) { int index = List.Add(value); return index; } public bool Contains(DesignerActionItem value) { return List.Contains(value); } public void CopyTo(DesignerActionItem[] array, int index) { List.CopyTo(array, index); } public int IndexOf(DesignerActionItem value) { return List.IndexOf(value); } public void Insert(int index, DesignerActionItem value) { List.Insert(index, value); } public void Remove(DesignerActionItem value) { List.Remove(value); } } } // 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
- ScriptComponentDescriptor.cs
- WindowsGrip.cs
- PowerModeChangedEventArgs.cs
- WindowsEditBox.cs
- Visual3D.cs
- XPathItem.cs
- LoginCancelEventArgs.cs
- RadioButtonAutomationPeer.cs
- NonVisualControlAttribute.cs
- AuthenticationModulesSection.cs
- EventLogger.cs
- PropertyEntry.cs
- Compiler.cs
- SecurityContext.cs
- Internal.cs
- WsrmTraceRecord.cs
- SourceFileBuildProvider.cs
- ResourceManagerWrapper.cs
- XamlValidatingReader.cs
- ObjectNavigationPropertyMapping.cs
- AppDomainManager.cs
- _AcceptOverlappedAsyncResult.cs
- HMACSHA1.cs
- XmlQueryTypeFactory.cs
- TextRange.cs
- SafeNativeMethods.cs
- ReadOnlyDictionary.cs
- DoubleCollectionValueSerializer.cs
- RegisteredExpandoAttribute.cs
- GridViewCancelEditEventArgs.cs
- SimpleTextLine.cs
- DataContext.cs
- BookmarkResumptionRecord.cs
- WindowPatternIdentifiers.cs
- EnumValAlphaComparer.cs
- SmiEventSink.cs
- SmtpReplyReaderFactory.cs
- HttpApplication.cs
- SQLBytesStorage.cs
- VSWCFServiceContractGenerator.cs
- SQLDecimalStorage.cs
- WebPartUserCapability.cs
- ClientSettingsStore.cs
- XPathParser.cs
- ModelPropertyDescriptor.cs
- DataPagerField.cs
- SpellerStatusTable.cs
- SchemaObjectWriter.cs
- ReadWriteObjectLock.cs
- StateWorkerRequest.cs
- ConsumerConnectionPoint.cs
- Mapping.cs
- GridItem.cs
- DataGridViewCellConverter.cs
- PartManifestEntry.cs
- X509ChainPolicy.cs
- DynamicDataResources.Designer.cs
- NullableLongSumAggregationOperator.cs
- ResourceDefaultValueAttribute.cs
- RemoteWebConfigurationHostStream.cs
- unsafeIndexingFilterStream.cs
- BackStopAuthenticationModule.cs
- InputScopeConverter.cs
- PageOrientation.cs
- HttpModuleCollection.cs
- ThreadExceptionEvent.cs
- AsyncResult.cs
- HttpServerProtocol.cs
- ExpressionBinding.cs
- SmtpReplyReaderFactory.cs
- TCEAdapterGenerator.cs
- TableSectionStyle.cs
- RelationshipDetailsRow.cs
- ApplicationManager.cs
- TheQuery.cs
- ShaperBuffers.cs
- figurelength.cs
- XamlReaderHelper.cs
- DataServiceProcessingPipelineEventArgs.cs
- MobileTextWriter.cs
- GradientStopCollection.cs
- DesignSurface.cs
- CornerRadius.cs
- BufferModeSettings.cs
- ConnectionInterfaceCollection.cs
- EventLogEntryCollection.cs
- SmiEventSink.cs
- ContextMenuService.cs
- BufferedOutputStream.cs
- Composition.cs
- DataGridViewUtilities.cs
- CodePropertyReferenceExpression.cs
- CodeGen.cs
- ScriptRef.cs
- StatusStrip.cs
- StorageScalarPropertyMapping.cs
- ProtectedConfigurationSection.cs
- ToolBar.cs
- DocumentApplicationState.cs
- CookielessHelper.cs