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
- StyleXamlParser.cs
- PersonalizationStateInfoCollection.cs
- DesignTimeParseData.cs
- TextSchema.cs
- SerializeAbsoluteContext.cs
- FindResponse.cs
- ListViewGroup.cs
- CopyOnWriteList.cs
- SystemKeyConverter.cs
- ToolStripContentPanelDesigner.cs
- Variable.cs
- SapiRecoContext.cs
- PasswordRecovery.cs
- DbConnectionInternal.cs
- EventLogTraceListener.cs
- LassoSelectionBehavior.cs
- HtmlInputCheckBox.cs
- Grid.cs
- UpdateExpressionVisitor.cs
- MasterPageBuildProvider.cs
- HitTestResult.cs
- XmlTextReaderImplHelpers.cs
- ComponentChangingEvent.cs
- WS2007HttpBinding.cs
- DBPropSet.cs
- SqlBooleanizer.cs
- NeedSkipTokenVisitor.cs
- ZipIOLocalFileDataDescriptor.cs
- WSFederationHttpSecurityMode.cs
- remotingproxy.cs
- UserMapPath.cs
- ParallelTimeline.cs
- OleDbCommand.cs
- ColorConvertedBitmap.cs
- XDeferredAxisSource.cs
- WebPartConnectionsDisconnectVerb.cs
- OledbConnectionStringbuilder.cs
- BoolExpression.cs
- ExpressionDumper.cs
- BitConverter.cs
- DbBuffer.cs
- DynamicMethod.cs
- XPathParser.cs
- PhysicalOps.cs
- InstancePersistence.cs
- XmlSchemaComplexContentExtension.cs
- OptimisticConcurrencyException.cs
- StreamResourceInfo.cs
- FixedHyperLink.cs
- LineInfo.cs
- WebPartDisplayMode.cs
- ToolStripDropDownMenu.cs
- SqlDataSourceCache.cs
- DataGridViewUtilities.cs
- DateBoldEvent.cs
- NullableConverter.cs
- DataTemplate.cs
- RequestResizeEvent.cs
- PictureBox.cs
- LinkArea.cs
- MailAddress.cs
- CheckBox.cs
- CompositeFontInfo.cs
- DoubleAnimationClockResource.cs
- _NtlmClient.cs
- AuthorizationSection.cs
- LayoutDump.cs
- WsdlParser.cs
- TypographyProperties.cs
- Binding.cs
- SqlDataReaderSmi.cs
- CharacterString.cs
- Evaluator.cs
- RegisteredHiddenField.cs
- SecurityHeader.cs
- SoapServerProtocol.cs
- DataControlCommands.cs
- StringExpressionSet.cs
- LOSFormatter.cs
- SafeRegistryKey.cs
- SaveLedgerEntryRequest.cs
- UnionExpr.cs
- NodeLabelEditEvent.cs
- RenderData.cs
- ArrayWithOffset.cs
- DependencyPropertyAttribute.cs
- Models.cs
- ComplexPropertyEntry.cs
- TypeDependencyAttribute.cs
- _ChunkParse.cs
- SearchExpression.cs
- DataKeyCollection.cs
- Faults.cs
- SystemMulticastIPAddressInformation.cs
- ClientUrlResolverWrapper.cs
- QueryRewriter.cs
- IdnElement.cs
- DetailsView.cs
- FragmentQuery.cs
- HandlerBase.cs