Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / WinForms / Managed / System / WinForms / DataGridViewCellEventArgs.cs / 1 / 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. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- _NegoStream.cs
- AccessibilityApplicationManager.cs
- DataListItemCollection.cs
- CompilerScope.cs
- RelationalExpressions.cs
- MD5.cs
- ServicesUtilities.cs
- OLEDB_Util.cs
- ObjectPersistData.cs
- SqlUtil.cs
- MetadataCacheItem.cs
- GridProviderWrapper.cs
- COM2TypeInfoProcessor.cs
- ObjectQueryExecutionPlan.cs
- PlatformCulture.cs
- Variant.cs
- DocumentOrderQuery.cs
- KeyValueConfigurationCollection.cs
- LassoHelper.cs
- CodeParameterDeclarationExpression.cs
- ThreadPool.cs
- ErrorFormatterPage.cs
- SchemaImporter.cs
- ADConnectionHelper.cs
- PlanCompilerUtil.cs
- ZoneLinkButton.cs
- PropertyTabAttribute.cs
- ISSmlParser.cs
- SafeMemoryMappedFileHandle.cs
- InputLanguageManager.cs
- QueryCacheManager.cs
- OleStrCAMarshaler.cs
- DataKey.cs
- AmbiguousMatchException.cs
- FormsAuthenticationEventArgs.cs
- Function.cs
- DateTimeConverter2.cs
- RequestBringIntoViewEventArgs.cs
- BevelBitmapEffect.cs
- FindCriteriaApril2005.cs
- Misc.cs
- ConfigXmlWhitespace.cs
- ConnectionConsumerAttribute.cs
- FrameworkElement.cs
- HyperLinkStyle.cs
- OuterGlowBitmapEffect.cs
- OleCmdHelper.cs
- InkSerializer.cs
- CacheChildrenQuery.cs
- DATA_BLOB.cs
- XmlTypeAttribute.cs
- NumericExpr.cs
- MetabaseServerConfig.cs
- ThemeInfoAttribute.cs
- InitializationEventAttribute.cs
- Padding.cs
- ObfuscationAttribute.cs
- ReadOnlyCollectionBase.cs
- XslTransform.cs
- ToolBarButton.cs
- AnnotationHelper.cs
- GenericPrincipal.cs
- ImageClickEventArgs.cs
- OrderedDictionary.cs
- Guid.cs
- EncodingTable.cs
- MessageEncoder.cs
- Wow64ConfigurationLoader.cs
- MenuCommands.cs
- HostedElements.cs
- _NetRes.cs
- ApplicationSettingsBase.cs
- ConnectionsZoneDesigner.cs
- CollectionsUtil.cs
- GcHandle.cs
- LinqDataSource.cs
- DataControlCommands.cs
- FunctionDetailsReader.cs
- ValidatorCollection.cs
- ZipIOZip64EndOfCentralDirectoryBlock.cs
- IssuanceLicense.cs
- PropertySegmentSerializationProvider.cs
- DispatcherFrame.cs
- CachingHintValidation.cs
- UnsafeNativeMethodsMilCoreApi.cs
- LazyTextWriterCreator.cs
- ControlBuilder.cs
- DescriptionAttribute.cs
- SqlBinder.cs
- CacheMemory.cs
- Section.cs
- AxHost.cs
- AppDomain.cs
- XmlSchemaChoice.cs
- TextUtf8RawTextWriter.cs
- SessionStateSection.cs
- XmlSchemaAnnotation.cs
- DropShadowBitmapEffect.cs
- FormsIdentity.cs
- XmlAnyElementAttribute.cs