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
- MetabaseServerConfig.cs
- HostingEnvironmentException.cs
- IImplicitResourceProvider.cs
- SiteMapNodeItemEventArgs.cs
- ToolbarAUtomationPeer.cs
- ExpressionBinding.cs
- EntityViewGenerationAttribute.cs
- Wizard.cs
- PlaceHolder.cs
- DataGridViewAdvancedBorderStyle.cs
- ClientConfigurationHost.cs
- DataControlFieldHeaderCell.cs
- DoubleAnimationClockResource.cs
- PenThread.cs
- InfoCardTraceRecord.cs
- precedingsibling.cs
- SessionStateModule.cs
- TableLayout.cs
- MarkerProperties.cs
- Rect3D.cs
- ClientCultureInfo.cs
- XmlSchemaExporter.cs
- XmlAttribute.cs
- DataGridToolTip.cs
- BindingBase.cs
- ButtonStandardAdapter.cs
- ErrorInfoXmlDocument.cs
- WindowsRegion.cs
- RijndaelManagedTransform.cs
- FormViewPagerRow.cs
- SqlFacetAttribute.cs
- NonSerializedAttribute.cs
- PropertyValueChangedEvent.cs
- CustomValidator.cs
- RepeaterItemCollection.cs
- EncryptedPackage.cs
- StreamInfo.cs
- SafeReadContext.cs
- Model3DCollection.cs
- PerfCounters.cs
- SimpleMailWebEventProvider.cs
- Timer.cs
- CacheEntry.cs
- SQLByte.cs
- TrailingSpaceComparer.cs
- ViewSimplifier.cs
- FormatterConverter.cs
- SqlXmlStorage.cs
- RadioButtonFlatAdapter.cs
- _NetRes.cs
- UIPropertyMetadata.cs
- CompositeCollectionView.cs
- WeakReference.cs
- NewExpression.cs
- ColorPalette.cs
- WindowsGraphicsCacheManager.cs
- DispatcherExceptionEventArgs.cs
- XmlSchemaAll.cs
- StringFormat.cs
- KnownBoxes.cs
- InheritedPropertyChangedEventArgs.cs
- IIS7UserPrincipal.cs
- SoapIncludeAttribute.cs
- LocationSectionRecord.cs
- SerializationUtility.cs
- PartialCachingControl.cs
- HotCommands.cs
- FormViewInsertedEventArgs.cs
- DescendentsWalker.cs
- ViewCellRelation.cs
- DataProtectionSecurityStateEncoder.cs
- SqlDataSource.cs
- OpenFileDialog.cs
- BitmapInitialize.cs
- HtmlInputImage.cs
- DataGrid.cs
- StateDesigner.CommentLayoutGlyph.cs
- StorageAssociationSetMapping.cs
- AQNBuilder.cs
- FileDataSourceCache.cs
- Geometry3D.cs
- Barrier.cs
- IfAction.cs
- HtmlProps.cs
- InvalidProgramException.cs
- SchemaImporter.cs
- ProxyWebPartManager.cs
- FontEmbeddingManager.cs
- ScriptManager.cs
- PersonalizationProviderHelper.cs
- ErrorHandler.cs
- XmlAutoDetectWriter.cs
- GatewayIPAddressInformationCollection.cs
- NameObjectCollectionBase.cs
- LineVisual.cs
- Dictionary.cs
- LabelLiteral.cs
- ChildrenQuery.cs
- ColorInterpolationModeValidation.cs
- XmlFormatWriterGenerator.cs