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
- URLMembershipCondition.cs
- StylusCollection.cs
- Tuple.cs
- InheritanceContextChangedEventManager.cs
- GlobalItem.cs
- EventData.cs
- FixedFlowMap.cs
- NumericPagerField.cs
- SlotInfo.cs
- SchemaManager.cs
- CommandSet.cs
- OperandQuery.cs
- SEHException.cs
- DelegateBodyWriter.cs
- ExtensionWindowResizeGrip.cs
- StateMachineTimers.cs
- RenameRuleObjectDialog.cs
- BulletedListEventArgs.cs
- CheckBoxList.cs
- ApplicationTrust.cs
- TypefaceCollection.cs
- UnsafeNativeMethods.cs
- TextSearch.cs
- LayoutInformation.cs
- RSAOAEPKeyExchangeDeformatter.cs
- HttpCachePolicy.cs
- AuthorizationRule.cs
- EditableLabelControl.cs
- XmlSchemaAnnotation.cs
- TypeDescriptorContext.cs
- SamlDelegatingWriter.cs
- XmlNodeReader.cs
- XmlSchemaObjectTable.cs
- EnvironmentPermission.cs
- VectorAnimationUsingKeyFrames.cs
- DataServiceKeyAttribute.cs
- AddInActivator.cs
- OLEDB_Enum.cs
- SecurityKeyIdentifier.cs
- DesignerForm.cs
- AsyncOperationContext.cs
- ObjectReferenceStack.cs
- Configuration.cs
- IntSecurity.cs
- Win32SafeHandles.cs
- ExplicitDiscriminatorMap.cs
- ChameleonKey.cs
- AsyncResult.cs
- SplineQuaternionKeyFrame.cs
- EventMappingSettings.cs
- CompositeCollectionView.cs
- Point3DAnimationUsingKeyFrames.cs
- cookiecollection.cs
- CommandPlan.cs
- _DigestClient.cs
- HyperLinkStyle.cs
- FixedSOMFixedBlock.cs
- BoolExpr.cs
- IndexOutOfRangeException.cs
- Cursor.cs
- MediaScriptCommandRoutedEventArgs.cs
- HwndSourceKeyboardInputSite.cs
- ListenerChannelContext.cs
- ToolBarPanel.cs
- DbParameterHelper.cs
- ProcessModelInfo.cs
- PropertyManager.cs
- ExpressionDumper.cs
- DataSourceXmlTextReader.cs
- DiscoveryDocumentSerializer.cs
- SettingsPropertyCollection.cs
- ContainerCodeDomSerializer.cs
- ConfigurationCollectionAttribute.cs
- DetailsViewRow.cs
- DataServiceRequestOfT.cs
- PolygonHotSpot.cs
- OpenFileDialog.cs
- QueryOutputWriter.cs
- SQLDateTimeStorage.cs
- MetadataArtifactLoaderCompositeResource.cs
- DispatchProxy.cs
- InvokeHandlers.cs
- SoapAttributeAttribute.cs
- LayoutTableCell.cs
- SoapDocumentMethodAttribute.cs
- HttpInputStream.cs
- Peer.cs
- TrackingServices.cs
- DispatcherEventArgs.cs
- RealizationDrawingContextWalker.cs
- SafeMILHandleMemoryPressure.cs
- DeferrableContent.cs
- Rule.cs
- TheQuery.cs
- UriSectionReader.cs
- ProcessModelInfo.cs
- WebPartExportVerb.cs
- SizeIndependentAnimationStorage.cs
- CodeTypeReference.cs
- CompositionCommandSet.cs