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
- FileCodeGroup.cs
- CharacterMetrics.cs
- TableAdapterManagerGenerator.cs
- ImageAttributes.cs
- HttpStreamFormatter.cs
- StickyNoteHelper.cs
- Geometry.cs
- XmlException.cs
- RoleGroup.cs
- WindowsFormsHost.cs
- SelectionItemProviderWrapper.cs
- ColumnMapProcessor.cs
- ValidateNames.cs
- ModelPropertyDescriptor.cs
- DataGridViewTopRowAccessibleObject.cs
- ArrayEditor.cs
- ContentElement.cs
- RowVisual.cs
- ListControlActionList.cs
- PinnedBufferMemoryStream.cs
- CodeNamespaceCollection.cs
- InstanceDescriptor.cs
- FileAccessException.cs
- XhtmlTextWriter.cs
- DataRowComparer.cs
- IndentedTextWriter.cs
- ManualResetEvent.cs
- DataGridItem.cs
- RowSpanVector.cs
- Module.cs
- DrawingBrush.cs
- DataColumnMappingCollection.cs
- SafeLocalAllocation.cs
- ContextBase.cs
- BorderGapMaskConverter.cs
- SoapSchemaMember.cs
- LambdaCompiler.Generated.cs
- DrawingState.cs
- TreeView.cs
- Size3DConverter.cs
- ChannelCacheSettings.cs
- IndexedEnumerable.cs
- DesignSurfaceManager.cs
- RadialGradientBrush.cs
- BindingSource.cs
- EventWaitHandleSecurity.cs
- TaskFileService.cs
- TreeNodeEventArgs.cs
- SpellerInterop.cs
- PersonalizationStateInfoCollection.cs
- PolyLineSegmentFigureLogic.cs
- ProvideValueServiceProvider.cs
- PerformanceCounterLib.cs
- TableCellCollection.cs
- RemoteArgument.cs
- Mouse.cs
- ThousandthOfEmRealPoints.cs
- DataObjectMethodAttribute.cs
- DataGridViewIntLinkedList.cs
- X509ChainElement.cs
- DocumentsTrace.cs
- PageBuildProvider.cs
- LocalizationParserHooks.cs
- FloaterBaseParagraph.cs
- ReceiveSecurityHeaderEntry.cs
- CancellationState.cs
- SqlTriggerAttribute.cs
- HtmlTableCell.cs
- StickyNoteHelper.cs
- EventEntry.cs
- StaticSiteMapProvider.cs
- WsdlWriter.cs
- SocketAddress.cs
- XmlSchemaParticle.cs
- RotateTransform.cs
- RelationshipConverter.cs
- KeyEventArgs.cs
- StrokeCollectionConverter.cs
- ObjectCache.cs
- IsolatedStoragePermission.cs
- DataIdProcessor.cs
- DbLambda.cs
- TemplatedWizardStep.cs
- CompensatableSequenceActivity.cs
- XmlBoundElement.cs
- PrimitiveCodeDomSerializer.cs
- AccessText.cs
- FamilyTypefaceCollection.cs
- HttpRuntimeSection.cs
- TextPenaltyModule.cs
- TextAnchor.cs
- AVElementHelper.cs
- SspiHelper.cs
- ConfigurationSection.cs
- ReflectionUtil.cs
- ScrollBar.cs
- ProviderSettingsCollection.cs
- DataGridTextBox.cs
- GroupByExpressionRewriter.cs
- X509CertificateStore.cs