Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / WinForms / Managed / System / WinForms / DataGridViewRowsRemovedEventArgs.cs / 1 / 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. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- UpdatableGenericsFeature.cs
- WindowsSysHeader.cs
- HttpClientCertificate.cs
- RangeValuePattern.cs
- TimeIntervalCollection.cs
- FloatUtil.cs
- HttpServerUtilityBase.cs
- _OverlappedAsyncResult.cs
- CodeDirectoryCompiler.cs
- RIPEMD160.cs
- DataViewSetting.cs
- DefaultMemberAttribute.cs
- XmlSchemaObject.cs
- MenuAutoFormat.cs
- DataExpression.cs
- ConfigurationManagerHelper.cs
- ColumnBinding.cs
- TransactionFlowProperty.cs
- HwndTarget.cs
- EdmToObjectNamespaceMap.cs
- AsymmetricKeyExchangeFormatter.cs
- MostlySingletonList.cs
- InfoCardKeyedHashAlgorithm.cs
- TileModeValidation.cs
- NextPreviousPagerField.cs
- X509ChainPolicy.cs
- InOutArgument.cs
- ISAPIRuntime.cs
- ThemeConfigurationDialog.cs
- DataGridViewMethods.cs
- MsmqBindingMonitor.cs
- XomlCompilerError.cs
- Page.cs
- LineSegment.cs
- WorkflowOperationErrorHandler.cs
- WorkerProcess.cs
- ResXFileRef.cs
- TextTreeTextElementNode.cs
- OrthographicCamera.cs
- XmlTextReaderImpl.cs
- HttpSessionStateBase.cs
- SqlUtils.cs
- OleDbRowUpdatedEvent.cs
- EncoderNLS.cs
- EventManager.cs
- AnnotationElement.cs
- GeometryModel3D.cs
- OdbcDataAdapter.cs
- ListBoxItemAutomationPeer.cs
- ByeMessageCD1.cs
- TagElement.cs
- RemotingSurrogateSelector.cs
- ResourceProperty.cs
- ProviderCommandInfoUtils.cs
- ReachVisualSerializer.cs
- ServiceInfo.cs
- FreezableDefaultValueFactory.cs
- EntityDataSourceSelectingEventArgs.cs
- StringTraceRecord.cs
- ResourceKey.cs
- DrawingContextWalker.cs
- SetStoryboardSpeedRatio.cs
- URL.cs
- X509CertificateTrustedIssuerElementCollection.cs
- DataGridHeaderBorder.cs
- AnimationClock.cs
- XslVisitor.cs
- PointAnimationUsingPath.cs
- ValidatorUtils.cs
- ZoomPercentageConverter.cs
- BuilderElements.cs
- LinqToSqlWrapper.cs
- EditCommandColumn.cs
- ExceptionHandler.cs
- ArrayTypeMismatchException.cs
- EntityCommand.cs
- AbsoluteQuery.cs
- ItemsControl.cs
- CodePropertyReferenceExpression.cs
- NumericUpDownAcceleration.cs
- SoapIncludeAttribute.cs
- PrintingPermission.cs
- WeakEventTable.cs
- ProxyManager.cs
- UniformGrid.cs
- PropertySourceInfo.cs
- Vector.cs
- MailDefinition.cs
- SafeRightsManagementHandle.cs
- PageContentCollection.cs
- RepeatInfo.cs
- NullableDoubleSumAggregationOperator.cs
- PasswordRecovery.cs
- TableLayout.cs
- MatrixUtil.cs
- MapPathBasedVirtualPathProvider.cs
- PointLightBase.cs
- PropertyToken.cs
- AnimationLayer.cs
- ImageBrush.cs