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
- TextEndOfSegment.cs
- RtType.cs
- LayoutDump.cs
- EdmSchemaError.cs
- WebPermission.cs
- QilTargetType.cs
- NavigationCommands.cs
- ListItem.cs
- Application.cs
- HandlerMappingMemo.cs
- RowType.cs
- IncrementalReadDecoders.cs
- SimpleHandlerFactory.cs
- FrameworkElement.cs
- Timer.cs
- ConfigurationLocationCollection.cs
- XamlHostingSectionGroup.cs
- WinOEToolBoxItem.cs
- WebPartDescriptionCollection.cs
- DataGridColumnHeader.cs
- FixedLineResult.cs
- SoapServerProtocol.cs
- CustomAttribute.cs
- ImpersonationContext.cs
- WebPartZoneBase.cs
- ActionMismatchAddressingException.cs
- ToolStripControlHost.cs
- SqlError.cs
- TableParaClient.cs
- XsdBuilder.cs
- storepermission.cs
- BitStack.cs
- Control.cs
- sqlcontext.cs
- ListMarkerLine.cs
- OdbcFactory.cs
- JournalEntryListConverter.cs
- TdsValueSetter.cs
- KnownTypeDataContractResolver.cs
- HttpResponseHeader.cs
- Rotation3D.cs
- EncryptedKey.cs
- DiscoveryReferences.cs
- AttachedPropertiesService.cs
- XPathArrayIterator.cs
- XamlSerializerUtil.cs
- UrlAuthorizationModule.cs
- ContractInferenceHelper.cs
- FolderLevelBuildProviderCollection.cs
- DrawingState.cs
- XmlElementList.cs
- DynamicMethod.cs
- ListChangedEventArgs.cs
- ScriptServiceAttribute.cs
- RegexRunnerFactory.cs
- SequentialOutput.cs
- CLRBindingWorker.cs
- TreeViewImageIndexConverter.cs
- StylusPointPropertyId.cs
- TextDataBindingHandler.cs
- sortedlist.cs
- SignatureToken.cs
- Hyperlink.cs
- BookmarkScopeInfo.cs
- CompositeDuplexElement.cs
- ReflectEventDescriptor.cs
- TimeSpanConverter.cs
- VScrollProperties.cs
- TransformerInfoCollection.cs
- ContractCodeDomInfo.cs
- HttpDebugHandler.cs
- BuiltInExpr.cs
- ProviderUtil.cs
- DesignerWebPartChrome.cs
- EntityObject.cs
- XsdBuilder.cs
- InnerItemCollectionView.cs
- XPathEmptyIterator.cs
- namescope.cs
- DataBoundControlHelper.cs
- ElementMarkupObject.cs
- JsonObjectDataContract.cs
- ECDiffieHellmanCng.cs
- ImageMap.cs
- BitmapData.cs
- ReadonlyMessageFilter.cs
- ProjectedWrapper.cs
- HttpModuleAction.cs
- PageRouteHandler.cs
- CodeTypeReferenceExpression.cs
- DoubleAnimationUsingKeyFrames.cs
- PartialList.cs
- SafeNativeMethods.cs
- SortQuery.cs
- KerberosTicketHashIdentifierClause.cs
- TraceContextEventArgs.cs
- MailDefinition.cs
- Point4DValueSerializer.cs
- CommonServiceBehaviorElement.cs
- GiveFeedbackEvent.cs