Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- MissingSatelliteAssemblyException.cs
- QueryResults.cs
- InputManager.cs
- XmlLanguage.cs
- Label.cs
- SortDescriptionCollection.cs
- CodeRemoveEventStatement.cs
- OpenTypeLayout.cs
- ArraySegment.cs
- ConsoleTraceListener.cs
- MailMessageEventArgs.cs
- EventQueueState.cs
- ScrollChrome.cs
- EntityProviderServices.cs
- RequestCachePolicyConverter.cs
- embossbitmapeffect.cs
- DataGridPageChangedEventArgs.cs
- IgnoreFileBuildProvider.cs
- IgnoreDataMemberAttribute.cs
- TypeConverterBase.cs
- Point3DCollectionConverter.cs
- DesignerTransaction.cs
- EventMap.cs
- Int32CollectionConverter.cs
- OptimizedTemplateContent.cs
- UrlMappingsSection.cs
- ObjectTag.cs
- WebControl.cs
- ManualResetEvent.cs
- ManipulationVelocities.cs
- DataError.cs
- ProcessHost.cs
- SiteMapNodeCollection.cs
- PropertiesTab.cs
- StrokeSerializer.cs
- HandleCollector.cs
- CreateDataSourceDialog.cs
- TypeUtil.cs
- LineBreak.cs
- EnumMember.cs
- EventHandlerList.cs
- SqlDuplicator.cs
- PerspectiveCamera.cs
- BevelBitmapEffect.cs
- URL.cs
- UIElementParaClient.cs
- XamlRtfConverter.cs
- HashMembershipCondition.cs
- QilExpression.cs
- TextElement.cs
- SnapLine.cs
- SessionSwitchEventArgs.cs
- MembershipAdapter.cs
- RadioButtonAutomationPeer.cs
- AppDomainManager.cs
- GridViewRowPresenter.cs
- DataGridViewTopRowAccessibleObject.cs
- Point3DIndependentAnimationStorage.cs
- SelectorAutomationPeer.cs
- FormViewDesigner.cs
- StdValidatorsAndConverters.cs
- ErrorInfoXmlDocument.cs
- DataTable.cs
- DataServiceExpressionVisitor.cs
- SBCSCodePageEncoding.cs
- SchemaTypeEmitter.cs
- TableLayoutRowStyleCollection.cs
- COM2ComponentEditor.cs
- Dispatcher.cs
- MarkupExtensionParser.cs
- DiscoveryDocument.cs
- SRGSCompiler.cs
- BamlResourceSerializer.cs
- BitVector32.cs
- ContractUtils.cs
- HttpCacheVaryByContentEncodings.cs
- RequiredFieldValidator.cs
- GuidelineCollection.cs
- Utils.cs
- OpCopier.cs
- Stylus.cs
- FreezableDefaultValueFactory.cs
- SystemWebExtensionsSectionGroup.cs
- ServiceAuthorizationElement.cs
- SafeProcessHandle.cs
- OperationResponse.cs
- Rect3DConverter.cs
- PartialList.cs
- XamlRtfConverter.cs
- MenuScrollingVisibilityConverter.cs
- Emitter.cs
- RSAPKCS1SignatureDeformatter.cs
- ProxyHwnd.cs
- LambdaCompiler.Address.cs
- CodeMemberMethod.cs
- Misc.cs
- ArgIterator.cs
- DataGridViewCheckBoxCell.cs
- TextRunProperties.cs
- UdpDuplexChannel.cs