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
- ElementUtil.cs
- FileDataSource.cs
- RegexStringValidatorAttribute.cs
- DataMember.cs
- ToolStripSeparator.cs
- TemplateBamlTreeBuilder.cs
- XmlReader.cs
- ClientConfigurationHost.cs
- ToolStripContentPanelRenderEventArgs.cs
- RevocationPoint.cs
- SqlDataRecord.cs
- WindowsToolbarItemAsMenuItem.cs
- DataGridViewRowHeightInfoPushedEventArgs.cs
- TypeLibConverter.cs
- BCLDebug.cs
- DateTimeOffset.cs
- ComplexTypeEmitter.cs
- ThumbButtonInfo.cs
- SQLConvert.cs
- GenericUI.cs
- WinFormsComponentEditor.cs
- WorkflowItemPresenter.cs
- AnnouncementInnerClient11.cs
- DSACryptoServiceProvider.cs
- Int32Animation.cs
- NetCodeGroup.cs
- XmlBinaryReaderSession.cs
- LicenseException.cs
- ByteStreamBufferedMessageData.cs
- RepeatButtonAutomationPeer.cs
- RTLAwareMessageBox.cs
- ExecutionEngineException.cs
- PagedDataSource.cs
- PropertyChangeTracker.cs
- StringAnimationUsingKeyFrames.cs
- HttpDictionary.cs
- SerializerProvider.cs
- TargetControlTypeAttribute.cs
- CodeDefaultValueExpression.cs
- TextDpi.cs
- QilParameter.cs
- ResXFileRef.cs
- FontSizeConverter.cs
- TargetControlTypeCache.cs
- XomlSerializationHelpers.cs
- Pkcs7Recipient.cs
- PreviewPrintController.cs
- ZipIOLocalFileDataDescriptor.cs
- StyleCollectionEditor.cs
- ContentPathSegment.cs
- SRef.cs
- QilPatternFactory.cs
- IPGlobalProperties.cs
- ImageKeyConverter.cs
- InvalidOleVariantTypeException.cs
- SelectionRangeConverter.cs
- MailAddressCollection.cs
- ExtensionFile.cs
- TextModifierScope.cs
- _SslStream.cs
- ObjectStateEntryBaseUpdatableDataRecord.cs
- Point3DKeyFrameCollection.cs
- ProtocolsConfigurationHandler.cs
- HighlightComponent.cs
- Adorner.cs
- SafeHandles.cs
- TableSectionStyle.cs
- UnsafeNetInfoNativeMethods.cs
- ResourceDescriptionAttribute.cs
- Color.cs
- ExpandCollapseProviderWrapper.cs
- ModuleBuilderData.cs
- CheckBoxBaseAdapter.cs
- DataGridAddNewRow.cs
- ItemMap.cs
- Base64Encoder.cs
- SystemTcpStatistics.cs
- HandlerWithFactory.cs
- SqlGatherProducedAliases.cs
- DataServiceProcessingPipelineEventArgs.cs
- Hash.cs
- PhysicalOps.cs
- StylusButtonCollection.cs
- StructuralObject.cs
- SynchronizedPool.cs
- ExpressionConverter.cs
- SoapElementAttribute.cs
- _HTTPDateParse.cs
- DataGridToolTip.cs
- wmiprovider.cs
- MatrixTransform3D.cs
- Axis.cs
- ResponseStream.cs
- SqlUtils.cs
- IntegerCollectionEditor.cs
- TraceFilter.cs
- WinEventQueueItem.cs
- ControlBuilderAttribute.cs
- ServiceProviders.cs
- RadioButtonFlatAdapter.cs