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
- DefaultAutoFieldGenerator.cs
- DockPanel.cs
- HMACSHA384.cs
- _FixedSizeReader.cs
- SystemDropShadowChrome.cs
- TableLayoutSettings.cs
- AsyncSerializedWorker.cs
- SmtpFailedRecipientException.cs
- ServiceOperation.cs
- HMACSHA1.cs
- Grant.cs
- LayoutInformation.cs
- PermissionListSet.cs
- Delegate.cs
- ZipIOModeEnforcingStream.cs
- Automation.cs
- ColorConverter.cs
- ElementFactory.cs
- Schema.cs
- ProfileBuildProvider.cs
- MD5CryptoServiceProvider.cs
- HttpResponse.cs
- FrameworkElementFactoryMarkupObject.cs
- PagePropertiesChangingEventArgs.cs
- ElementNotEnabledException.cs
- ResolvedKeyFrameEntry.cs
- WebResourceUtil.cs
- ReaderOutput.cs
- CacheOutputQuery.cs
- Resources.Designer.cs
- WindowAutomationPeer.cs
- XmlArrayItemAttribute.cs
- SqlUnionizer.cs
- COM2ExtendedBrowsingHandler.cs
- TypeInfo.cs
- SqlUserDefinedTypeAttribute.cs
- EarlyBoundInfo.cs
- GroupedContextMenuStrip.cs
- AutoGeneratedField.cs
- ReachNamespaceInfo.cs
- DBSchemaRow.cs
- ExceptionCollection.cs
- precedingsibling.cs
- XmlNullResolver.cs
- CustomLineCap.cs
- IndentedWriter.cs
- ImageSource.cs
- RectValueSerializer.cs
- CellConstant.cs
- InfoCardService.cs
- ScriptModule.cs
- XmlSchemaAnyAttribute.cs
- OdbcHandle.cs
- HttpHeaderCollection.cs
- SystemUdpStatistics.cs
- ListCollectionView.cs
- XmlEnumAttribute.cs
- RepeaterCommandEventArgs.cs
- returneventsaver.cs
- RuntimeArgument.cs
- WebBrowserDesigner.cs
- SqlBinder.cs
- FormatterConverter.cs
- IdentityNotMappedException.cs
- PathGeometry.cs
- DataGridViewRowPrePaintEventArgs.cs
- ListBindingConverter.cs
- StorageEntitySetMapping.cs
- NativeWindow.cs
- TrackingParameters.cs
- HttpBindingExtension.cs
- TextProperties.cs
- TypeBuilderInstantiation.cs
- InvalidOleVariantTypeException.cs
- Panel.cs
- KeyGesture.cs
- DataMemberAttribute.cs
- GridViewUpdateEventArgs.cs
- DynamicFilter.cs
- ControlPaint.cs
- DataViewManager.cs
- WebPartCloseVerb.cs
- PolyQuadraticBezierSegment.cs
- SafeSecurityHandles.cs
- SafeRightsManagementSessionHandle.cs
- ArglessEventHandlerProxy.cs
- ListenerServiceInstallComponent.cs
- MouseButton.cs
- TileBrush.cs
- PolicyConversionContext.cs
- ToolStripDropDown.cs
- ProfileEventArgs.cs
- PinnedBufferMemoryStream.cs
- SemanticTag.cs
- SQLConvert.cs
- WebServiceTypeData.cs
- ModuleBuilder.cs
- CaseInsensitiveComparer.cs
- Baml2006SchemaContext.cs
- SerializationObjectManager.cs