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
- SingleQueryOperator.cs
- HotSpotCollectionEditor.cs
- ProfileInfo.cs
- BuildProviderCollection.cs
- PageParser.cs
- CryptoApi.cs
- ExpressionWriter.cs
- XmlCDATASection.cs
- ReliableMessagingVersionConverter.cs
- WebAdminConfigurationHelper.cs
- NullableLongAverageAggregationOperator.cs
- XhtmlBasicObjectListAdapter.cs
- DesignTimeParseData.cs
- COAUTHIDENTITY.cs
- elementinformation.cs
- SectionRecord.cs
- ListViewEditEventArgs.cs
- GPRECTF.cs
- SqlRemoveConstantOrderBy.cs
- NativeCppClassAttribute.cs
- ApplicationDirectoryMembershipCondition.cs
- ContentDesigner.cs
- Cursor.cs
- OptionUsage.cs
- JsonStringDataContract.cs
- SQLBytesStorage.cs
- DataColumnMapping.cs
- OracleLob.cs
- HandlerMappingMemo.cs
- ZipIOCentralDirectoryBlock.cs
- URLBuilder.cs
- BaseCodePageEncoding.cs
- TreeNode.cs
- WorkflowMessageEventHandler.cs
- NetSectionGroup.cs
- CreateParams.cs
- CriticalHandle.cs
- WaitHandleCannotBeOpenedException.cs
- NamespaceQuery.cs
- XamlFigureLengthSerializer.cs
- DataGridViewColumnCollection.cs
- SimpleWorkerRequest.cs
- DynamicQueryableWrapper.cs
- MarkedHighlightComponent.cs
- SchemaTableColumn.cs
- MouseEvent.cs
- COM2PictureConverter.cs
- UnsafeNativeMethods.cs
- ViewGenerator.cs
- Ref.cs
- PhysicalFontFamily.cs
- PrtCap_Public_Simple.cs
- WinCategoryAttribute.cs
- UpdateProgress.cs
- BinaryFormatter.cs
- AnnotationResourceCollection.cs
- webeventbuffer.cs
- OleDbConnectionInternal.cs
- XsdBuildProvider.cs
- QilLiteral.cs
- FocusTracker.cs
- x509utils.cs
- ModuleElement.cs
- SpellerError.cs
- Material.cs
- RuleSet.cs
- SchemaAttDef.cs
- ThreadStaticAttribute.cs
- EventMappingSettings.cs
- mediaeventargs.cs
- NonVisualControlAttribute.cs
- HttpCookie.cs
- FastPropertyAccessor.cs
- SqlCacheDependencyDatabaseCollection.cs
- FlowSwitchLink.cs
- DataBindingCollectionEditor.cs
- ServiceSecurityContext.cs
- XmlQualifiedName.cs
- DATA_BLOB.cs
- GeometryCombineModeValidation.cs
- MessageQueueAccessControlEntry.cs
- ProfilePropertySettings.cs
- BamlLocalizabilityResolver.cs
- RoutedCommand.cs
- RadioButtonList.cs
- SqlMethodCallConverter.cs
- DataGridViewCellStateChangedEventArgs.cs
- Attachment.cs
- HttpModuleActionCollection.cs
- FixedPosition.cs
- StatementContext.cs
- Models.cs
- TdsParserSafeHandles.cs
- TitleStyle.cs
- CapabilitiesRule.cs
- SecurityContextSecurityToken.cs
- Vector3D.cs
- OdbcError.cs
- Asn1IntegerConverter.cs
- MenuAutomationPeer.cs