Code:
/ DotNET / DotNET / 8.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
- PageAdapter.cs
- ThreadExceptionDialog.cs
- DynamicUpdateCommand.cs
- TransactionsSectionGroup.cs
- WindowsGrip.cs
- Renderer.cs
- PropertyDescriptorComparer.cs
- ValueTypeFixupInfo.cs
- JumpPath.cs
- HttpHandlersSection.cs
- MachineKeySection.cs
- EntityTypeEmitter.cs
- ScriptingProfileServiceSection.cs
- UnhandledExceptionEventArgs.cs
- IntSecurity.cs
- TextBox.cs
- TextViewBase.cs
- TimeEnumHelper.cs
- ButtonField.cs
- COM2IProvidePropertyBuilderHandler.cs
- TdsParserStaticMethods.cs
- SqlUdtInfo.cs
- DecoderBestFitFallback.cs
- XmlSchemaSimpleTypeList.cs
- SmtpNtlmAuthenticationModule.cs
- SiteMembershipCondition.cs
- DataIdProcessor.cs
- CircleHotSpot.cs
- SchemaImporter.cs
- Aes.cs
- TextTreeUndoUnit.cs
- HtmlControl.cs
- DesignerOptionService.cs
- ColumnMapCopier.cs
- SizeChangedInfo.cs
- ImageListUtils.cs
- FlowLayoutPanel.cs
- ErrorFormatterPage.cs
- ExpressionPrinter.cs
- GeometryConverter.cs
- CompilationRelaxations.cs
- OdbcConnectionHandle.cs
- PrinterSettings.cs
- RemotingAttributes.cs
- TargetException.cs
- DataGridViewRowsRemovedEventArgs.cs
- TextDecoration.cs
- SoundPlayer.cs
- PageAdapter.cs
- SingleAnimationBase.cs
- DesignTimeVisibleAttribute.cs
- SrgsNameValueTag.cs
- ImageDrawing.cs
- dataprotectionpermission.cs
- ReadOnlyCollection.cs
- DataObject.cs
- DbDataRecord.cs
- XpsImageSerializationService.cs
- CollectionDataContract.cs
- GifBitmapEncoder.cs
- Invariant.cs
- RsaEndpointIdentity.cs
- DetailsViewInsertEventArgs.cs
- QilDataSource.cs
- XmlDigitalSignatureProcessor.cs
- OleDbPropertySetGuid.cs
- IMembershipProvider.cs
- DefaultEventAttribute.cs
- TraceContextRecord.cs
- SqlExpander.cs
- AsymmetricAlgorithm.cs
- HtmlInputText.cs
- Int64Storage.cs
- ExpressionConverter.cs
- TypeDescriptor.cs
- PlatformNotSupportedException.cs
- Calendar.cs
- BaseTemplateBuildProvider.cs
- SID.cs
- InputLanguageEventArgs.cs
- ListenDesigner.cs
- TextBoxView.cs
- LayoutEvent.cs
- InteropTrackingRecord.cs
- TextViewSelectionProcessor.cs
- CacheVirtualItemsEvent.cs
- ApplicationSecurityManager.cs
- BuildDependencySet.cs
- NotifyParentPropertyAttribute.cs
- _Semaphore.cs
- TimeSpanConverter.cs
- DelegateSerializationHolder.cs
- XmlCollation.cs
- XamlTemplateSerializer.cs
- _ChunkParse.cs
- GeneralTransform3DCollection.cs
- EventWaitHandleSecurity.cs
- RegexRunnerFactory.cs
- PackWebResponse.cs
- XmlDownloadManager.cs