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
- StringResourceManager.cs
- URIFormatException.cs
- TransformPatternIdentifiers.cs
- AttributeQuery.cs
- DockPatternIdentifiers.cs
- RawStylusActions.cs
- XmlILConstructAnalyzer.cs
- sqlcontext.cs
- WindowsComboBox.cs
- WebPartTransformerAttribute.cs
- RuleConditionDialog.cs
- WindowProviderWrapper.cs
- FreezableOperations.cs
- EncodingInfo.cs
- SecurityDescriptor.cs
- ListDictionaryInternal.cs
- StoreAnnotationsMap.cs
- EndpointIdentityConverter.cs
- EntityCodeGenerator.cs
- WebPartAddingEventArgs.cs
- TypeConverter.cs
- GlobalAclOperationRequirement.cs
- PageRanges.cs
- MsmqOutputMessage.cs
- Activity.cs
- HttpCapabilitiesSectionHandler.cs
- XmlSchemaSimpleTypeRestriction.cs
- ActivityDesigner.cs
- SelectionProcessor.cs
- HitTestResult.cs
- storepermission.cs
- XmlSerializableReader.cs
- ping.cs
- DataGridViewTopRowAccessibleObject.cs
- CollectionViewGroupRoot.cs
- NominalTypeEliminator.cs
- DataRecordInfo.cs
- IMembershipProvider.cs
- JpegBitmapEncoder.cs
- BitmapEffectInput.cs
- DefaultAuthorizationContext.cs
- PersonalizationDictionary.cs
- IntranetCredentialPolicy.cs
- mda.cs
- DSASignatureFormatter.cs
- SHA1CryptoServiceProvider.cs
- ConnectionInterfaceCollection.cs
- SoapIncludeAttribute.cs
- ElementAction.cs
- BrowserDefinitionCollection.cs
- SrgsDocumentParser.cs
- ByteStreamMessageEncodingElement.cs
- RepeaterCommandEventArgs.cs
- BufferAllocator.cs
- DuplicateDetector.cs
- WizardPanel.cs
- mediaeventargs.cs
- UrlMappingCollection.cs
- IResourceProvider.cs
- ReliableOutputConnection.cs
- CodeConditionStatement.cs
- ScrollBar.cs
- BaseTemplateParser.cs
- OperationFormatter.cs
- OdbcConnection.cs
- HopperCache.cs
- RegistryKey.cs
- FontWeight.cs
- Ports.cs
- EndOfStreamException.cs
- ProxyWebPart.cs
- ResourcesGenerator.cs
- SerializerProvider.cs
- DeviceFiltersSection.cs
- CalendarDay.cs
- SafeBitVector32.cs
- WebAdminConfigurationHelper.cs
- DataGridViewRow.cs
- ConfigurationSectionCollection.cs
- ContextMenuStripGroup.cs
- Icon.cs
- FileUtil.cs
- EmptyQuery.cs
- StyleTypedPropertyAttribute.cs
- PropertyValue.cs
- DataKey.cs
- Viewport3DAutomationPeer.cs
- DocumentPropertiesDialog.cs
- OAVariantLib.cs
- TimeSpanSecondsOrInfiniteConverter.cs
- WebPartTracker.cs
- FieldToken.cs
- BigInt.cs
- SafeRightsManagementHandle.cs
- DbException.cs
- SettingsPropertyCollection.cs
- TdsParameterSetter.cs
- VBCodeProvider.cs
- XmlSerializerAssemblyAttribute.cs
- Byte.cs