Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / WinForms / Managed / System / WinForms / TableLayoutRowStyleCollection.cs / 1 / TableLayoutRowStyleCollection.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 TableLayoutRowStyleCollection : TableLayoutStyleCollection { internal TableLayoutRowStyleCollection(IArrangedElement Owner) : base(Owner) {} internal TableLayoutRowStyleCollection() : base(null) {} internal override string PropertyName { get { return PropertyNames.RowStyles; } } /// public int Add(RowStyle rowStyle) { return ((IList)this).Add(rowStyle); } /// public void Insert(int index, RowStyle rowStyle) { ((IList)this).Insert(index, rowStyle); } /// public new RowStyle this[int index] { get { return (RowStyle)((IList)this)[index]; } set { ((IList)this)[index] = value; } } /// public void Remove(RowStyle rowStyle) { ((IList)this).Remove(rowStyle); } /// public bool Contains(RowStyle rowStyle) { return ((IList)this).Contains(rowStyle); } /// public int IndexOf(RowStyle rowStyle) { return ((IList)this).IndexOf(rowStyle); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ // // 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 TableLayoutRowStyleCollection : TableLayoutStyleCollection { internal TableLayoutRowStyleCollection(IArrangedElement Owner) : base(Owner) {} internal TableLayoutRowStyleCollection() : base(null) {} internal override string PropertyName { get { return PropertyNames.RowStyles; } } /// public int Add(RowStyle rowStyle) { return ((IList)this).Add(rowStyle); } /// public void Insert(int index, RowStyle rowStyle) { ((IList)this).Insert(index, rowStyle); } /// public new RowStyle this[int index] { get { return (RowStyle)((IList)this)[index]; } set { ((IList)this)[index] = value; } } /// public void Remove(RowStyle rowStyle) { ((IList)this).Remove(rowStyle); } /// public bool Contains(RowStyle rowStyle) { return ((IList)this).Contains(rowStyle); } /// public int IndexOf(RowStyle rowStyle) { return ((IList)this).IndexOf(rowStyle); } } } // 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
- SoapAttributes.cs
- NetworkStream.cs
- DbProviderConfigurationHandler.cs
- WpfSharedBamlSchemaContext.cs
- LightweightCodeGenerator.cs
- SQLInt64Storage.cs
- ClientOptions.cs
- JsonReader.cs
- KnownBoxes.cs
- ChangeInterceptorAttribute.cs
- RoleManagerSection.cs
- SeverityFilter.cs
- shaper.cs
- HostnameComparisonMode.cs
- FixedBufferAttribute.cs
- StreamGeometry.cs
- safePerfProviderHandle.cs
- DesignerView.cs
- NeutralResourcesLanguageAttribute.cs
- AdornedElementPlaceholder.cs
- DataColumnChangeEvent.cs
- HashRepartitionStream.cs
- ModelItemKeyValuePair.cs
- SQLInt64Storage.cs
- ColorKeyFrameCollection.cs
- WebPartRestoreVerb.cs
- XPathCompileException.cs
- _HelperAsyncResults.cs
- SharedPersonalizationStateInfo.cs
- TrustLevelCollection.cs
- LinqDataSourceEditData.cs
- KeyNotFoundException.cs
- RSAOAEPKeyExchangeDeformatter.cs
- LateBoundBitmapDecoder.cs
- SrgsSubset.cs
- DispatchWrapper.cs
- VersionedStreamOwner.cs
- ipaddressinformationcollection.cs
- RoleExceptions.cs
- XmlSchemaAnyAttribute.cs
- CustomError.cs
- ListBoxItemWrapperAutomationPeer.cs
- PassportAuthentication.cs
- PackageRelationship.cs
- ImplicitInputBrush.cs
- NameValueFileSectionHandler.cs
- LayoutTable.cs
- GetWinFXPath.cs
- ObjectDataSourceChooseTypePanel.cs
- DataGrid.cs
- BuildDependencySet.cs
- ScriptResourceAttribute.cs
- DrawTreeNodeEventArgs.cs
- ExceptionValidationRule.cs
- FixedSOMImage.cs
- CachedTypeface.cs
- SectionRecord.cs
- Array.cs
- Attachment.cs
- WeakEventTable.cs
- ByteAnimation.cs
- FilterElement.cs
- WebServiceHandlerFactory.cs
- JoinTreeSlot.cs
- BitVector32.cs
- BoolLiteral.cs
- XmlSerializationGeneratedCode.cs
- CacheVirtualItemsEvent.cs
- XmlWrappingReader.cs
- ProjectionPlan.cs
- AttributeUsageAttribute.cs
- InstanceDataCollection.cs
- ClipboardProcessor.cs
- LogicalTreeHelper.cs
- Repeater.cs
- BypassElement.cs
- ExceptionHelpers.cs
- FieldAccessException.cs
- ControlDesigner.cs
- CollectionEditorDialog.cs
- GlobalDataBindingHandler.cs
- odbcmetadatacollectionnames.cs
- Thread.cs
- ListViewUpdateEventArgs.cs
- TextWriter.cs
- ImpersonationContext.cs
- ObjectDataSourceView.cs
- UInt32.cs
- MsdtcClusterUtils.cs
- XmlWrappingReader.cs
- HtmlShimManager.cs
- DeviceContext2.cs
- ContentTextAutomationPeer.cs
- TypeDescriptionProvider.cs
- UrlPath.cs
- SimpleHandlerFactory.cs
- MinimizableAttributeTypeConverter.cs
- Brush.cs
- RijndaelManagedTransform.cs
- FirstQueryOperator.cs