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
- Vector3DAnimationBase.cs
- ErrorWrapper.cs
- RotateTransform3D.cs
- CfgRule.cs
- PageAdapter.cs
- SchemaImporter.cs
- SmtpNtlmAuthenticationModule.cs
- SymmetricCryptoHandle.cs
- EdmItemCollection.cs
- WindowsEditBox.cs
- WebUtil.cs
- SapiRecoContext.cs
- GCHandleCookieTable.cs
- XmlSchemaDatatype.cs
- FunctionParameter.cs
- CustomWebEventKey.cs
- AssemblyFilter.cs
- EventHandlerService.cs
- SymmetricKey.cs
- GC.cs
- EntityDataSourceColumn.cs
- RootNamespaceAttribute.cs
- LongTypeConverter.cs
- ConditionalBranch.cs
- HtmlInputHidden.cs
- ReadOnlyCollectionBase.cs
- ISFClipboardData.cs
- PartitionResolver.cs
- WindowsListViewSubItem.cs
- XsltLoader.cs
- DetailsViewPageEventArgs.cs
- MenuItemCollection.cs
- CategoryGridEntry.cs
- Internal.cs
- Tile.cs
- ConfigXmlComment.cs
- CodeSnippetTypeMember.cs
- TemplatedWizardStep.cs
- ColorConverter.cs
- SafeTokenHandle.cs
- MouseBinding.cs
- Overlapped.cs
- ValueQuery.cs
- EnumerableWrapperWeakToStrong.cs
- EndPoint.cs
- PcmConverter.cs
- EntitySqlQueryCacheEntry.cs
- RegexRunner.cs
- SafeCryptoHandles.cs
- WebPartCollection.cs
- WebSysDefaultValueAttribute.cs
- SqlParameterCollection.cs
- XmlSerializerNamespaces.cs
- XmlText.cs
- SQLDateTime.cs
- DockPattern.cs
- TabControlCancelEvent.cs
- SoapCodeExporter.cs
- GeometryDrawing.cs
- DataGridViewDataConnection.cs
- Boolean.cs
- SelectionRange.cs
- ProxyWebPart.cs
- EastAsianLunisolarCalendar.cs
- PackWebRequest.cs
- SQLCharsStorage.cs
- CursorConverter.cs
- XmlBinaryReader.cs
- SapiGrammar.cs
- ContractSearchPattern.cs
- SortFieldComparer.cs
- InitiatorSessionSymmetricMessageSecurityProtocol.cs
- COMException.cs
- HTMLTagNameToTypeMapper.cs
- DataColumnCollection.cs
- DataTableClearEvent.cs
- ArrayWithOffset.cs
- HGlobalSafeHandle.cs
- TypeElement.cs
- CachedFontFace.cs
- AssociationTypeEmitter.cs
- OverflowException.cs
- EFAssociationProvider.cs
- JsonEncodingStreamWrapper.cs
- HierarchicalDataTemplate.cs
- Pkcs7Recipient.cs
- EUCJPEncoding.cs
- ProfileParameter.cs
- ToolStripScrollButton.cs
- RuleDefinitions.cs
- TraceContext.cs
- DecoratedNameAttribute.cs
- XmlSerializerAssemblyAttribute.cs
- RegisteredArrayDeclaration.cs
- SkewTransform.cs
- PersonalizationProviderCollection.cs
- NameTable.cs
- CodeAttributeDeclaration.cs
- TextViewSelectionProcessor.cs
- MulticastDelegate.cs