Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / TableLayoutColumnStyleCollection.cs / 1305376 / TableLayoutColumnStyleCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System; using System.Collections; using System.ComponentModel; using System.ComponentModel.Design.Serialization; using System.Diagnostics; using System.Drawing; using System.Drawing.Design; using System.Globalization; using System.Windows.Forms.Layout; using System.Reflection; ///public class TableLayoutColumnStyleCollection : TableLayoutStyleCollection { internal TableLayoutColumnStyleCollection(IArrangedElement Owner) : base(Owner) {} internal TableLayoutColumnStyleCollection() : base(null) {} internal override string PropertyName { get { return PropertyNames.ColumnStyles; } } /// public int Add(ColumnStyle columnStyle) { return ((IList)this).Add(columnStyle); } /// public void Insert(int index, ColumnStyle columnStyle) { ((IList)this).Insert(index, columnStyle); } /// public new ColumnStyle this[int index] { get { return (ColumnStyle)((IList)this)[index]; } set { ((IList)this)[index] = value; } } /// public void Remove(ColumnStyle columnStyle) { ((IList)this).Remove(columnStyle); } /// public bool Contains(ColumnStyle columnStyle) { return ((IList)this).Contains(columnStyle); } /// public int IndexOf(ColumnStyle columnStyle) { return ((IList)this).IndexOf(columnStyle); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- VectorAnimation.cs
- StrokeFIndices.cs
- CharAnimationBase.cs
- EventLogEntryCollection.cs
- DataRecordInternal.cs
- FormClosingEvent.cs
- EtwTrace.cs
- WebPartDescriptionCollection.cs
- DataViewSettingCollection.cs
- IsolatedStorageException.cs
- XmlSchemaSimpleContentRestriction.cs
- Thread.cs
- EncryptedPackage.cs
- DesignerToolboxInfo.cs
- SequenceDesigner.xaml.cs
- CustomWebEventKey.cs
- XmlObjectSerializerReadContextComplex.cs
- XmlSchemaSimpleTypeList.cs
- WSAddressing10ProblemHeaderQNameFault.cs
- GeometryCollection.cs
- ConfigurationValues.cs
- SingleConverter.cs
- _NativeSSPI.cs
- XmlSerializationWriter.cs
- MetafileHeader.cs
- XmlSchemaSimpleContentExtension.cs
- DBSqlParser.cs
- VideoDrawing.cs
- ImageClickEventArgs.cs
- RectangleHotSpot.cs
- RuntimeConfig.cs
- HtmlElementEventArgs.cs
- WebServicesDescriptionAttribute.cs
- SmtpTransport.cs
- SaveFileDialog.cs
- OdbcRowUpdatingEvent.cs
- XsdSchemaFileEditor.cs
- QilPatternVisitor.cs
- CachedCompositeFamily.cs
- HttpModulesSection.cs
- DefaultClaimSet.cs
- ProfileInfo.cs
- CompilerGeneratedAttribute.cs
- ImageCodecInfoPrivate.cs
- _BufferOffsetSize.cs
- CqlGenerator.cs
- DateTimePicker.cs
- DBSqlParser.cs
- SQLBinaryStorage.cs
- TableCellCollection.cs
- RequestResizeEvent.cs
- SendSecurityHeaderElement.cs
- WeakReferenceList.cs
- InstanceHandleConflictException.cs
- PerformanceCounterScope.cs
- MissingSatelliteAssemblyException.cs
- BuiltInExpr.cs
- SystemResourceKey.cs
- FacetChecker.cs
- ContentOperations.cs
- OutOfMemoryException.cs
- altserialization.cs
- ParameterModifier.cs
- Registry.cs
- BaseAutoFormat.cs
- ClientType.cs
- ChildTable.cs
- XmlSchemaCollection.cs
- Scripts.cs
- AssemblyNameUtility.cs
- TextBounds.cs
- TextBox.cs
- ObjectManager.cs
- LinqDataView.cs
- XmlILModule.cs
- StateElementCollection.cs
- HandleCollector.cs
- RtfFormatStack.cs
- Config.cs
- WebServicesSection.cs
- Constants.cs
- DispatcherFrame.cs
- HyperLinkColumn.cs
- ActivationServices.cs
- NameValueSectionHandler.cs
- _ChunkParse.cs
- ClassHandlersStore.cs
- sortedlist.cs
- XmlObjectSerializerReadContextComplexJson.cs
- ChannelSettingsElement.cs
- PagedControl.cs
- StorageConditionPropertyMapping.cs
- BinaryCommonClasses.cs
- FastEncoderWindow.cs
- SQLInt16Storage.cs
- ClientCredentialsElement.cs
- ManagementEventWatcher.cs
- QilStrConcatenator.cs
- MediaPlayerState.cs