Code:
/ DotNET / DotNET / 8.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
- CacheSection.cs
- InstanceData.cs
- EventListener.cs
- DataReceivedEventArgs.cs
- JobStaple.cs
- SchemaConstraints.cs
- FontFaceLayoutInfo.cs
- UrlMappingCollection.cs
- HasActivatableWorkflowEvent.cs
- RegexInterpreter.cs
- PeerTransportListenAddressConverter.cs
- AsyncOperationManager.cs
- securitycriticaldataClass.cs
- IntegerValidatorAttribute.cs
- EventMap.cs
- SplineQuaternionKeyFrame.cs
- FontConverter.cs
- ActivityStatusChangeEventArgs.cs
- SiteMapNode.cs
- FixedSOMLineCollection.cs
- ExtensionWindow.cs
- WebPartConnectionsDisconnectVerb.cs
- TdsEnums.cs
- TreeWalker.cs
- XmlSchemaCollection.cs
- TreeWalker.cs
- BaseAddressElement.cs
- CodeNamespaceImportCollection.cs
- RoutedCommand.cs
- OdbcRowUpdatingEvent.cs
- Trigger.cs
- StretchValidation.cs
- DocumentPropertiesDialog.cs
- DataList.cs
- DataGridItem.cs
- HostedHttpContext.cs
- DuplexClientBase.cs
- StackSpiller.Generated.cs
- DocumentPageHost.cs
- ScriptingScriptResourceHandlerSection.cs
- ConfigurationElement.cs
- StringBlob.cs
- COM2EnumConverter.cs
- Stroke2.cs
- DbConnectionOptions.cs
- VirtualizedCellInfoCollection.cs
- EncryptedType.cs
- ProjectionAnalyzer.cs
- StrokeDescriptor.cs
- MediaElement.cs
- SoapServerMessage.cs
- FixedSchema.cs
- ViewBox.cs
- TranslateTransform.cs
- XPathEmptyIterator.cs
- IncomingWebRequestContext.cs
- InternalsVisibleToAttribute.cs
- altserialization.cs
- ExplicitDiscriminatorMap.cs
- ProfileSettings.cs
- InternalConfigEventArgs.cs
- GridProviderWrapper.cs
- OleDbDataReader.cs
- Formatter.cs
- CompilationPass2TaskInternal.cs
- ModifierKeysConverter.cs
- InstallerTypeAttribute.cs
- NotSupportedException.cs
- ListControl.cs
- Serializer.cs
- ComplexPropertyEntry.cs
- TheQuery.cs
- EventDriven.cs
- TokenBasedSetEnumerator.cs
- VariableExpressionConverter.cs
- _ProxyChain.cs
- KeyboardNavigation.cs
- httpserverutility.cs
- NameValueSectionHandler.cs
- DataGridViewAccessibleObject.cs
- SafeFreeMibTable.cs
- DocumentAutomationPeer.cs
- WorkflowQueue.cs
- QueryReaderSettings.cs
- Inflater.cs
- XmlValidatingReaderImpl.cs
- UndoManager.cs
- _HeaderInfoTable.cs
- Operator.cs
- RayMeshGeometry3DHitTestResult.cs
- Rect.cs
- MsmqIntegrationOutputChannel.cs
- StaticDataManager.cs
- DataGridTextColumn.cs
- RemoteWebConfigurationHost.cs
- TypeDelegator.cs
- MdbDataFileEditor.cs
- FixedSOMGroup.cs
- FixedSOMLineRanges.cs
- ListItem.cs