Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / TableLayoutRowStyleCollection.cs / 1305376 / 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
- DesignerDeviceConfig.cs
- UseLicense.cs
- GenericAuthenticationEventArgs.cs
- peersecurityelement.cs
- ConnectionPool.cs
- WebPartZoneCollection.cs
- XamlParser.cs
- EndpointAddressMessageFilterTable.cs
- DataSourceControl.cs
- CustomLineCap.cs
- HMAC.cs
- WhiteSpaceTrimStringConverter.cs
- DiagnosticsConfiguration.cs
- Mutex.cs
- SqlCacheDependencyDatabaseCollection.cs
- DictionaryContent.cs
- ZoneIdentityPermission.cs
- ReadOnlyTernaryTree.cs
- Int16KeyFrameCollection.cs
- FrameworkElementFactory.cs
- iisPickupDirectory.cs
- TextEditorCharacters.cs
- MsmqIntegrationBinding.cs
- HGlobalSafeHandle.cs
- Point3DAnimationUsingKeyFrames.cs
- ShaderEffect.cs
- BitmapEffectGroup.cs
- InputElement.cs
- OverrideMode.cs
- Label.cs
- CodeMemberField.cs
- OciLobLocator.cs
- MultipleViewPattern.cs
- IisTraceWebEventProvider.cs
- SchemaNotation.cs
- CodeComment.cs
- ScriptDescriptor.cs
- loginstatus.cs
- EventMap.cs
- HtmlLabelAdapter.cs
- DesignerTransactionCloseEvent.cs
- mansign.cs
- CodeIdentifiers.cs
- RequestQueue.cs
- ImageDrawing.cs
- MimePart.cs
- SendKeys.cs
- PerspectiveCamera.cs
- RSAOAEPKeyExchangeDeformatter.cs
- TextTreeDeleteContentUndoUnit.cs
- NullRuntimeConfig.cs
- BitmapEffectInput.cs
- LabelAutomationPeer.cs
- DesignerMetadata.cs
- InvalidComObjectException.cs
- ElementsClipboardData.cs
- TextBox.cs
- SimpleParser.cs
- DragStartedEventArgs.cs
- DirectionalLight.cs
- LicenseManager.cs
- MessageBodyMemberAttribute.cs
- XPathSingletonIterator.cs
- XmlSchemaSimpleType.cs
- printdlgexmarshaler.cs
- GlyphRunDrawing.cs
- PropertyDescriptorComparer.cs
- HttpListenerException.cs
- FileIOPermission.cs
- ChooseAction.cs
- WebBrowser.cs
- XmlSchemaGroup.cs
- QueryOptionExpression.cs
- PassportIdentity.cs
- RunClient.cs
- AnnotationObservableCollection.cs
- SchemaConstraints.cs
- CollectionChange.cs
- ChildrenQuery.cs
- RoutedPropertyChangedEventArgs.cs
- Console.cs
- NullableLongMinMaxAggregationOperator.cs
- TypeUtils.cs
- WebEvents.cs
- XmlSchemaObjectTable.cs
- ResourceDictionary.cs
- CodeAssignStatement.cs
- AttachedPropertyBrowsableForTypeAttribute.cs
- SafeHandles.cs
- ListViewItem.cs
- CqlParserHelpers.cs
- RoutingConfiguration.cs
- NativeMethods.cs
- HttpWrapper.cs
- SafeHandles.cs
- TextTreeNode.cs
- ToolStripDropDownMenu.cs
- OleDbPermission.cs
- UserPersonalizationStateInfo.cs
- FontDialog.cs