Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / DataGridViewCellEventArgs.cs / 1305376 / DataGridViewCellEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System; using System.Diagnostics; ///public class DataGridViewCellEventArgs : EventArgs { private int columnIndex; private int rowIndex; internal DataGridViewCellEventArgs(DataGridViewCell dataGridViewCell) : this(dataGridViewCell.ColumnIndex, dataGridViewCell.RowIndex) { } /// public DataGridViewCellEventArgs(int columnIndex, int rowIndex) { if (columnIndex < -1) { throw new ArgumentOutOfRangeException("columnIndex"); } if (rowIndex < -1) { throw new ArgumentOutOfRangeException("rowIndex"); } this.columnIndex = columnIndex; this.rowIndex = rowIndex; } /// public int ColumnIndex { get { return this.columnIndex; } } /// public int RowIndex { get { return this.rowIndex; } } } } // 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
- DataGridViewRowStateChangedEventArgs.cs
- AnnotationResourceChangedEventArgs.cs
- DynamicQueryableWrapper.cs
- XmlCharCheckingReader.cs
- DataException.cs
- MultipleViewPattern.cs
- EditorPart.cs
- DataGridViewImageCell.cs
- VirtualPathUtility.cs
- Speller.cs
- CurrencyWrapper.cs
- GetKeyedHashRequest.cs
- ConfigurationStrings.cs
- DataGridItem.cs
- Trigger.cs
- InputLangChangeEvent.cs
- PageHandlerFactory.cs
- SchemeSettingElementCollection.cs
- TransformConverter.cs
- BitmapImage.cs
- InputManager.cs
- ThreadPool.cs
- AmbiguousMatchException.cs
- MenuScrollingVisibilityConverter.cs
- DaylightTime.cs
- HttpClientChannel.cs
- Point3DCollection.cs
- SQLConvert.cs
- SystemIcmpV6Statistics.cs
- Logging.cs
- RoamingStoreFile.cs
- ContentElementCollection.cs
- AccessDataSourceDesigner.cs
- DiscoveryClient.cs
- ExtensionFile.cs
- QueuedDeliveryRequirementsMode.cs
- CheckableControlBaseAdapter.cs
- UnmanagedMemoryStreamWrapper.cs
- entitydatasourceentitysetnameconverter.cs
- GrammarBuilder.cs
- SqlConnection.cs
- WebPartZoneCollection.cs
- ScrollProperties.cs
- ComplexTypeEmitter.cs
- AttachedPropertyMethodSelector.cs
- ElementAtQueryOperator.cs
- DelimitedListTraceListener.cs
- WebServiceClientProxyGenerator.cs
- TraceProvider.cs
- DelegatedStream.cs
- StatusBarAutomationPeer.cs
- PeerNameResolver.cs
- XmlLinkedNode.cs
- SchemaSetCompiler.cs
- EventMappingSettingsCollection.cs
- AssemblyAssociatedContentFileAttribute.cs
- QueryPageSettingsEventArgs.cs
- DataGridParentRows.cs
- RankException.cs
- DataGridHeaderBorder.cs
- SuppressMergeCheckAttribute.cs
- ModelPropertyImpl.cs
- QuaternionAnimation.cs
- AffineTransform3D.cs
- ListItemParagraph.cs
- ActivationArguments.cs
- NetworkStream.cs
- ClientSettingsStore.cs
- ControlType.cs
- MatrixAnimationUsingKeyFrames.cs
- SqlStream.cs
- BinaryUtilClasses.cs
- AspNetHostingPermission.cs
- TileBrush.cs
- SharedPersonalizationStateInfo.cs
- StylusDevice.cs
- SplashScreenNativeMethods.cs
- HttpListenerContext.cs
- OleDbPropertySetGuid.cs
- XamlInt32CollectionSerializer.cs
- storepermission.cs
- EntryIndex.cs
- PathFigure.cs
- XmlEntityReference.cs
- Stroke2.cs
- EntityDataSourceView.cs
- SessionStateSection.cs
- XmlSubtreeReader.cs
- ToolStripLabel.cs
- DataRelationPropertyDescriptor.cs
- EventMappingSettings.cs
- HtmlDocument.cs
- QueryContinueDragEventArgs.cs
- SymDocumentType.cs
- ReadOnlyCollectionBase.cs
- XamlBrushSerializer.cs
- IgnoreFileBuildProvider.cs
- AssemblyAttributes.cs
- WebPartConnectionCollection.cs
- KeyValueConfigurationCollection.cs