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
- ConfigurationStrings.cs
- WebPermission.cs
- CacheChildrenQuery.cs
- TransactionFlowBindingElement.cs
- SqlUDTStorage.cs
- NamespaceList.cs
- AdornerDecorator.cs
- TransactedBatchingBehavior.cs
- CoreChannel.cs
- DataGridViewCellMouseEventArgs.cs
- FilterableAttribute.cs
- XmlDataProvider.cs
- QilBinary.cs
- Bidi.cs
- ServiceReference.cs
- sapiproxy.cs
- RoleGroupCollection.cs
- ResourceContainer.cs
- LayoutSettings.cs
- base64Transforms.cs
- UnsafeNativeMethods.cs
- PrivateFontCollection.cs
- DataBoundLiteralControl.cs
- SqlBulkCopy.cs
- StructuredTypeEmitter.cs
- PeerCustomResolverBindingElement.cs
- OutputChannel.cs
- WindowHideOrCloseTracker.cs
- InfoCardRSAOAEPKeyExchangeFormatter.cs
- KnownBoxes.cs
- TypeBrowserDialog.cs
- ResetableIterator.cs
- FormsIdentity.cs
- HttpListenerPrefixCollection.cs
- BoundField.cs
- KeyedHashAlgorithm.cs
- ObjectStorage.cs
- ComboBox.cs
- QueryStringParameter.cs
- TemplateControl.cs
- StaticFileHandler.cs
- UrlPath.cs
- SqlReorderer.cs
- Crc32Helper.cs
- WsatServiceAddress.cs
- DataControlField.cs
- TextTreeInsertElementUndoUnit.cs
- XmlValidatingReader.cs
- CachedRequestParams.cs
- SuppressMessageAttribute.cs
- DetailsViewRowCollection.cs
- LogReserveAndAppendState.cs
- WsatRegistrationHeader.cs
- ObjectIDGenerator.cs
- EraserBehavior.cs
- ColorTransformHelper.cs
- PropertyValueChangedEvent.cs
- Tuple.cs
- FixedDocumentSequencePaginator.cs
- CodeAttributeArgument.cs
- HttpMethodAttribute.cs
- EmptyControlCollection.cs
- ChannelEndpointElement.cs
- StringAnimationUsingKeyFrames.cs
- Maps.cs
- OleDbDataReader.cs
- ElementHostAutomationPeer.cs
- XmlTextReaderImplHelpers.cs
- UriGenerator.cs
- FileLevelControlBuilderAttribute.cs
- GroupStyle.cs
- ListSortDescription.cs
- XhtmlConformanceSection.cs
- XmlAnyElementAttribute.cs
- DataGridViewCellLinkedList.cs
- DataBindingList.cs
- QilFunction.cs
- OdbcStatementHandle.cs
- ExecutionEngineException.cs
- SQLDecimalStorage.cs
- PackageRelationshipCollection.cs
- WizardPanel.cs
- DateTimeFormat.cs
- AuthorizationRuleCollection.cs
- SchemaComplexType.cs
- UIAgentAsyncBeginRequest.cs
- EnumCodeDomSerializer.cs
- SelectionRange.cs
- ZoomingMessageFilter.cs
- CompiledELinqQueryState.cs
- StrokeCollectionDefaultValueFactory.cs
- DataGridSortCommandEventArgs.cs
- Int16.cs
- RoleService.cs
- PasswordDeriveBytes.cs
- ExceptionUtil.cs
- UInt16.cs
- CallbackHandler.cs
- LocationSectionRecord.cs
- WebServiceErrorEvent.cs