Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / DataGridViewRowsRemovedEventArgs.cs / 1305376 / DataGridViewRowsRemovedEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System; using System.Diagnostics; using System.Globalization; ///public class DataGridViewRowsRemovedEventArgs : EventArgs { private int rowIndex, rowCount; /// public DataGridViewRowsRemovedEventArgs(int rowIndex, int rowCount) { if (rowIndex < 0) { throw new ArgumentOutOfRangeException("rowIndex", SR.GetString(SR.InvalidLowBoundArgumentEx, "rowIndex", rowIndex.ToString(CultureInfo.CurrentCulture), (0).ToString(CultureInfo.CurrentCulture))); } if (rowCount < 1) { throw new ArgumentOutOfRangeException("rowCount", SR.GetString(SR.InvalidLowBoundArgumentEx, "rowCount", rowCount.ToString(CultureInfo.CurrentCulture), (1).ToString(CultureInfo.CurrentCulture))); } this.rowIndex = rowIndex; this.rowCount = rowCount; } /// public int RowIndex { get { return this.rowIndex; } } /// public int RowCount { get { return this.rowCount; } } } } // 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
- StaticExtension.cs
- DebugInfoGenerator.cs
- LogSwitch.cs
- OleDbConnectionInternal.cs
- controlskin.cs
- FontInfo.cs
- MenuItemBinding.cs
- TreeNodeStyleCollectionEditor.cs
- ExclusiveHandle.cs
- CacheSection.cs
- HtmlDocument.cs
- InputManager.cs
- FrameAutomationPeer.cs
- DataGridViewHitTestInfo.cs
- ColumnProvider.cs
- SizeF.cs
- SQLBytesStorage.cs
- WindowsSecurityToken.cs
- PolyLineSegment.cs
- PropertyCollection.cs
- COM2PropertyDescriptor.cs
- documentation.cs
- DBCommandBuilder.cs
- SwitchLevelAttribute.cs
- DataGridViewRowHeaderCell.cs
- EmptyStringExpandableObjectConverter.cs
- CallContext.cs
- HttpProxyCredentialType.cs
- OdbcStatementHandle.cs
- FlatButtonAppearance.cs
- SqlHelper.cs
- Vector3DAnimation.cs
- ComponentCollection.cs
- SHA1.cs
- IndividualDeviceConfig.cs
- TableRowCollection.cs
- ViewStateModeByIdAttribute.cs
- PropertyDescriptorCollection.cs
- DataGridViewButtonColumn.cs
- Activity.cs
- AccessDataSource.cs
- SamlAssertionKeyIdentifierClause.cs
- ProfileModule.cs
- webclient.cs
- ConfigurationStrings.cs
- SpellCheck.cs
- WorkflowMarkupSerializerMapping.cs
- DataTableClearEvent.cs
- DbConnectionFactory.cs
- ApplicationInfo.cs
- AppDomainCompilerProxy.cs
- BuildProviderCollection.cs
- UnknownWrapper.cs
- DynamicActivity.cs
- Single.cs
- PrintDocument.cs
- BamlLocalizableResource.cs
- RTLAwareMessageBox.cs
- SegmentInfo.cs
- SiteMapHierarchicalDataSourceView.cs
- InnerItemCollectionView.cs
- XmlWrappingReader.cs
- XamlStream.cs
- SQLConvert.cs
- ComponentResourceKey.cs
- TcpSocketManager.cs
- SelectionEditingBehavior.cs
- ProfileService.cs
- MachineKeyConverter.cs
- SettingsPropertyValueCollection.cs
- ScrollChrome.cs
- SoapSchemaExporter.cs
- OleDbDataReader.cs
- CacheVirtualItemsEvent.cs
- ControlIdConverter.cs
- ComAwareEventInfo.cs
- SafeRightsManagementHandle.cs
- NamespaceEmitter.cs
- MDIClient.cs
- TemplateBuilder.cs
- ACE.cs
- ToolStripOverflowButton.cs
- XmlIgnoreAttribute.cs
- ListViewAutomationPeer.cs
- TemplateXamlTreeBuilder.cs
- ComponentResourceManager.cs
- ObjectDataSourceChooseMethodsPanel.cs
- ConditionBrowserDialog.cs
- WebPartDesigner.cs
- OdbcParameterCollection.cs
- SqlLiftIndependentRowExpressions.cs
- WindowsTreeView.cs
- RootBrowserWindowProxy.cs
- SmiEventStream.cs
- XmlQualifiedName.cs
- InvalidOperationException.cs
- RequestCachePolicyConverter.cs
- IItemContainerGenerator.cs
- OneOf.cs
- QueryContinueDragEventArgs.cs