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
- AuthenticationService.cs
- Evaluator.cs
- WebSysDisplayNameAttribute.cs
- KeyFrames.cs
- X500Name.cs
- SymmetricKeyWrap.cs
- MsmqTransportSecurityElement.cs
- ConstructorArgumentAttribute.cs
- SystemInfo.cs
- TimeIntervalCollection.cs
- JournalEntry.cs
- DataGridViewTopLeftHeaderCell.cs
- SelectorItemAutomationPeer.cs
- KeyPressEvent.cs
- BufferedMessageWriter.cs
- ButtonBaseAutomationPeer.cs
- RegistryConfigurationProvider.cs
- CombinedGeometry.cs
- _FixedSizeReader.cs
- TagPrefixInfo.cs
- PageCatalogPart.cs
- PhysicalAddress.cs
- AudioLevelUpdatedEventArgs.cs
- WebRequestModulesSection.cs
- ExpressionCopier.cs
- TemplateBindingExpressionConverter.cs
- ProfileGroupSettingsCollection.cs
- Vector3DCollection.cs
- CompModSwitches.cs
- HwndProxyElementProvider.cs
- TextProviderWrapper.cs
- CoreSwitches.cs
- ExecutionEngineException.cs
- Transaction.cs
- Invariant.cs
- KeySplineConverter.cs
- RenderOptions.cs
- ProfileGroupSettingsCollection.cs
- SingleKeyFrameCollection.cs
- ByteAnimationBase.cs
- _BasicClient.cs
- InternalMappingException.cs
- TextTreeText.cs
- MetadataArtifactLoaderCompositeResource.cs
- CheckBoxStandardAdapter.cs
- GroupItemAutomationPeer.cs
- OLEDB_Enum.cs
- PhysicalOps.cs
- WindowsMenu.cs
- FreezableCollection.cs
- OracleConnectionStringBuilder.cs
- FramingFormat.cs
- SpecialNameAttribute.cs
- FileDialog.cs
- MouseCaptureWithinProperty.cs
- TrackingExtract.cs
- DesignerToolboxInfo.cs
- DataGridViewColumnCollectionDialog.cs
- ButtonFieldBase.cs
- XMLSchema.cs
- MulticastNotSupportedException.cs
- Vector3DAnimationBase.cs
- TargetConverter.cs
- LoginViewDesigner.cs
- RefType.cs
- QueryGenerator.cs
- MorphHelper.cs
- ValidationPropertyAttribute.cs
- JournalEntry.cs
- DesignerSelectionListAdapter.cs
- UnsafeNativeMethods.cs
- ContainerSelectorActiveEvent.cs
- XmlUrlResolver.cs
- FormatterServices.cs
- X509InitiatorCertificateClientElement.cs
- InstallerTypeAttribute.cs
- InstanceOwnerQueryResult.cs
- DetailsViewInsertedEventArgs.cs
- ControlParameter.cs
- NumericExpr.cs
- WindowsGraphicsCacheManager.cs
- smtppermission.cs
- UrlMappingsModule.cs
- ControlCommandSet.cs
- EastAsianLunisolarCalendar.cs
- TakeQueryOptionExpression.cs
- InputProviderSite.cs
- RoleManagerSection.cs
- Variant.cs
- HttpHandlersSection.cs
- DataGridViewTopRowAccessibleObject.cs
- RtType.cs
- WindowClosedEventArgs.cs
- SQLInt32.cs
- PreservationFileWriter.cs
- PrintPreviewGraphics.cs
- BoundingRectTracker.cs
- Bitmap.cs
- XmlSchemaIdentityConstraint.cs
- PackagePart.cs