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
- ItemMap.cs
- PropertyKey.cs
- SHA384Cng.cs
- AutomationElementIdentifiers.cs
- ToolStripManager.cs
- ProfilePropertyMetadata.cs
- CompletionCallbackWrapper.cs
- CodePropertyReferenceExpression.cs
- XmlValueConverter.cs
- DocumentAutomationPeer.cs
- FileReservationCollection.cs
- GPRECT.cs
- SecurityTokenRequirement.cs
- WS2007FederationHttpBindingElement.cs
- UntypedNullExpression.cs
- HitTestFilterBehavior.cs
- ExecutionTracker.cs
- HtmlTableCellCollection.cs
- MultiBindingExpression.cs
- TriggerActionCollection.cs
- regiisutil.cs
- Compilation.cs
- UIElement.cs
- StickyNoteAnnotations.cs
- XamlClipboardData.cs
- Symbol.cs
- InputProcessorProfiles.cs
- RoutedEventArgs.cs
- TableRowCollection.cs
- ExpressionBuilder.cs
- CssClassPropertyAttribute.cs
- SweepDirectionValidation.cs
- VisualProxy.cs
- URL.cs
- DispatchOperationRuntime.cs
- FormsAuthenticationTicket.cs
- AudioDeviceOut.cs
- DefaultProxySection.cs
- KoreanCalendar.cs
- DesignerActionListCollection.cs
- TakeQueryOptionExpression.cs
- FrameworkEventSource.cs
- Helpers.cs
- ObjectTag.cs
- MenuItemBinding.cs
- SafePEFileHandle.cs
- CopyCodeAction.cs
- FileLoadException.cs
- baseaxisquery.cs
- SchemaMapping.cs
- XsltLoader.cs
- CodeGeneratorOptions.cs
- TagPrefixInfo.cs
- FullTextBreakpoint.cs
- ControlParameter.cs
- DateTimeConstantAttribute.cs
- XsltSettings.cs
- PerformanceCounterPermission.cs
- ClientSettingsProvider.cs
- TextRangeEditLists.cs
- CompositeCollectionView.cs
- DynamicILGenerator.cs
- BypassElementCollection.cs
- _NegotiateClient.cs
- ListViewPagedDataSource.cs
- Decimal.cs
- ConfigUtil.cs
- Number.cs
- ConnectionProviderAttribute.cs
- EntityChangedParams.cs
- BitmapMetadataBlob.cs
- AnchorEditor.cs
- FolderLevelBuildProvider.cs
- Timer.cs
- InputBuffer.cs
- SafePointer.cs
- COM2DataTypeToManagedDataTypeConverter.cs
- PackageRelationshipSelector.cs
- DocumentGridContextMenu.cs
- MergePropertyDescriptor.cs
- EventManager.cs
- SQLBinary.cs
- CorrelationValidator.cs
- WeakReferenceList.cs
- RecordsAffectedEventArgs.cs
- Misc.cs
- WorkflowMarkupElementEventArgs.cs
- CodeCatchClause.cs
- Debug.cs
- Propagator.cs
- Misc.cs
- ImageSourceConverter.cs
- BlurBitmapEffect.cs
- KnownTypes.cs
- CssTextWriter.cs
- ExceptionTrace.cs
- SqlRecordBuffer.cs
- TrackingRecordPreFilter.cs
- TreeWalker.cs
- XmlSchemaSimpleTypeList.cs