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
- SqlConnectionManager.cs
- _DisconnectOverlappedAsyncResult.cs
- PreProcessInputEventArgs.cs
- latinshape.cs
- QueryStringParameter.cs
- ObjectListDesigner.cs
- AssemblyNameProxy.cs
- SymmetricCryptoHandle.cs
- Mapping.cs
- COM2ExtendedBrowsingHandler.cs
- UIAgentMonitor.cs
- XpsFilter.cs
- Annotation.cs
- CacheAxisQuery.cs
- BitArray.cs
- CatchBlock.cs
- WebOperationContext.cs
- DataStorage.cs
- BaseTemplateParser.cs
- Win32KeyboardDevice.cs
- Font.cs
- TreeNode.cs
- DBBindings.cs
- WebPartCloseVerb.cs
- BasicKeyConstraint.cs
- arc.cs
- CriticalFinalizerObject.cs
- AnnotationResourceChangedEventArgs.cs
- DoubleAnimationBase.cs
- unitconverter.cs
- HttpRequest.cs
- PopupRootAutomationPeer.cs
- SynchronizingStream.cs
- OpCopier.cs
- LambdaCompiler.Statements.cs
- CacheDict.cs
- SmtpNegotiateAuthenticationModule.cs
- ExtenderProvidedPropertyAttribute.cs
- SecurityTokenTypes.cs
- BulletedListEventArgs.cs
- CalendarDateRange.cs
- DerivedKeyCachingSecurityTokenSerializer.cs
- TransformedBitmap.cs
- CopyNodeSetAction.cs
- OleDbRowUpdatingEvent.cs
- PingReply.cs
- StringWriter.cs
- XmlSchemaType.cs
- Sequence.cs
- AutoResetEvent.cs
- BrowserInteropHelper.cs
- GenericPrincipal.cs
- WebPartVerb.cs
- NativeObjectSecurity.cs
- ServerValidateEventArgs.cs
- CodeVariableReferenceExpression.cs
- SequentialUshortCollection.cs
- Win32.cs
- BufferBuilder.cs
- MemoryRecordBuffer.cs
- PenThreadWorker.cs
- ListItemViewControl.cs
- DesignTimeTemplateParser.cs
- BamlResourceDeserializer.cs
- StorageComplexPropertyMapping.cs
- ObservableCollection.cs
- RuleInfoComparer.cs
- SQLInt32Storage.cs
- XmlKeywords.cs
- SoapRpcMethodAttribute.cs
- EventLog.cs
- arc.cs
- EventLogRecord.cs
- StringAnimationBase.cs
- InvokeGenerator.cs
- AppendHelper.cs
- XmlNamespaceManager.cs
- DataTemplateSelector.cs
- FileDialog_Vista.cs
- Expr.cs
- UriSection.cs
- CngKey.cs
- OdbcConnectionOpen.cs
- DirectoryGroupQuery.cs
- Point3DCollectionConverter.cs
- TextTreeDeleteContentUndoUnit.cs
- AvTraceFormat.cs
- RoleManagerModule.cs
- x509utils.cs
- XmlEventCache.cs
- TraceUtils.cs
- PropertyMetadata.cs
- LicenseManager.cs
- DragDropManager.cs
- HtmlInputButton.cs
- XsltQilFactory.cs
- TextEditorLists.cs
- HostProtectionPermission.cs
- WorkflowMessageEventHandler.cs
- EntityDataSourceEntityTypeFilterItem.cs