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
- ExpressionValueEditor.cs
- PeerServiceMessageContracts.cs
- UIElement3D.cs
- InvalidCastException.cs
- WebException.cs
- ExceptionRoutedEventArgs.cs
- SiteMapNodeCollection.cs
- ForwardPositionQuery.cs
- SqlTopReducer.cs
- Grid.cs
- MatrixAnimationBase.cs
- MaterializeFromAtom.cs
- FormClosingEvent.cs
- HttpDictionary.cs
- DCSafeHandle.cs
- Win32NamedPipes.cs
- TTSEngineProxy.cs
- ProviderCollection.cs
- EventSinkHelperWriter.cs
- EnvelopedSignatureTransform.cs
- OutputCacheSettingsSection.cs
- ElementHostAutomationPeer.cs
- DataGridCell.cs
- SoapReflectionImporter.cs
- FrugalList.cs
- ViewValidator.cs
- SHA1Managed.cs
- ElementHost.cs
- LinkLabelLinkClickedEvent.cs
- MsdtcClusterUtils.cs
- SwitchExpression.cs
- SocketPermission.cs
- AutoGeneratedFieldProperties.cs
- StateBag.cs
- RoleManagerEventArgs.cs
- DesignerActionPanel.cs
- GeneratedCodeAttribute.cs
- Base64Stream.cs
- EqualityArray.cs
- XPathChildIterator.cs
- StrongNamePublicKeyBlob.cs
- DictionaryKeyPropertyAttribute.cs
- ToolBarButton.cs
- WindowsTooltip.cs
- EncoderBestFitFallback.cs
- DashStyles.cs
- Sorting.cs
- QueryInterceptorAttribute.cs
- UniqueConstraint.cs
- RoutedUICommand.cs
- MetaTableHelper.cs
- UnsafeNativeMethods.cs
- ToolStripItemGlyph.cs
- OracleMonthSpan.cs
- MissingFieldException.cs
- BitmapEffectDrawingContent.cs
- DbConnectionPoolIdentity.cs
- CollectionViewSource.cs
- XmlAttributeOverrides.cs
- AnnotationComponentChooser.cs
- PixelFormats.cs
- Thread.cs
- EntityDataSourceUtil.cs
- SafeBuffer.cs
- SocketElement.cs
- PrivilegeNotHeldException.cs
- MediaTimeline.cs
- ColorContextHelper.cs
- ColumnMap.cs
- ZipIOZip64EndOfCentralDirectoryLocatorBlock.cs
- TextCollapsingProperties.cs
- WizardDesigner.cs
- InfoCardTraceRecord.cs
- DataGridViewDataConnection.cs
- ILGenerator.cs
- ErrorFormatterPage.cs
- DataGridViewRowHeightInfoPushedEventArgs.cs
- SqlDataSource.cs
- ProjectionNode.cs
- SingleSelectRootGridEntry.cs
- _SslSessionsCache.cs
- MiniConstructorInfo.cs
- PointCollection.cs
- AccessKeyManager.cs
- LinkClickEvent.cs
- WebMethodAttribute.cs
- EditBehavior.cs
- ToolZone.cs
- RelatedImageListAttribute.cs
- ToolStripContentPanelDesigner.cs
- CompilationLock.cs
- Emitter.cs
- XPathAncestorQuery.cs
- DocumentationServerProtocol.cs
- InputDevice.cs
- ClientRoleProvider.cs
- SqlBuilder.cs
- XamlToRtfParser.cs
- OleDbDataReader.cs
- Console.cs