Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / DataGridViewCellMouseEventArgs.cs / 1305376 / DataGridViewCellMouseEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System; using System.ComponentModel; ////// /// public class DataGridViewCellMouseEventArgs : MouseEventArgs { private int rowIndex, columnIndex; ///[To be supplied.] ///public DataGridViewCellMouseEventArgs(int columnIndex, int rowIndex, int localX, int localY, MouseEventArgs e) : base(e.Button, e.Clicks, localX, localY, e.Delta) { 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
- DescendantQuery.cs
- CookielessHelper.cs
- DeadCharTextComposition.cs
- ByteStorage.cs
- LassoSelectionBehavior.cs
- IgnorePropertiesAttribute.cs
- ImageListImage.cs
- HttpPostClientProtocol.cs
- HandleCollector.cs
- TextBoxRenderer.cs
- cache.cs
- OdbcPermission.cs
- EntityProxyFactory.cs
- unsafenativemethodsother.cs
- Popup.cs
- DataPagerFieldCommandEventArgs.cs
- XmlAttributeOverrides.cs
- DependencyPropertyDescriptor.cs
- Effect.cs
- NameSpaceEvent.cs
- HttpDebugHandler.cs
- XmlAttribute.cs
- ConstraintManager.cs
- ReadOnlyCollection.cs
- ObjectStateEntryDbUpdatableDataRecord.cs
- SqlIdentifier.cs
- RoleManagerEventArgs.cs
- ToggleProviderWrapper.cs
- ResXResourceReader.cs
- ValidationPropertyAttribute.cs
- GetPageNumberCompletedEventArgs.cs
- HtmlHistory.cs
- SecurityManager.cs
- NetSectionGroup.cs
- RtfToken.cs
- ToolStripContentPanelRenderEventArgs.cs
- LoaderAllocator.cs
- NodeCounter.cs
- DetailsViewModeEventArgs.cs
- EventMappingSettings.cs
- PageEventArgs.cs
- DocumentOrderQuery.cs
- CryptoProvider.cs
- MissingFieldException.cs
- SvcFileManager.cs
- SqlProviderServices.cs
- WebResourceUtil.cs
- SimpleType.cs
- UTF32Encoding.cs
- TextDecoration.cs
- MissingManifestResourceException.cs
- Polygon.cs
- ChildChangedEventArgs.cs
- Triplet.cs
- DataGridViewLinkColumn.cs
- LineGeometry.cs
- EventItfInfo.cs
- RegexCaptureCollection.cs
- HealthMonitoringSection.cs
- BamlResourceSerializer.cs
- CompModSwitches.cs
- TempFiles.cs
- TreeNodeBinding.cs
- ADConnectionHelper.cs
- SettingsPropertyWrongTypeException.cs
- ToolStripRendererSwitcher.cs
- HttpServerUtilityWrapper.cs
- XmlBinaryReader.cs
- AspCompat.cs
- Process.cs
- ColorKeyFrameCollection.cs
- VariableExpressionConverter.cs
- WindowClosedEventArgs.cs
- ResourceReferenceExpressionConverter.cs
- KeyGestureConverter.cs
- MtomMessageEncodingBindingElement.cs
- ApplyImportsAction.cs
- TextFindEngine.cs
- DataContractSet.cs
- WebPartMinimizeVerb.cs
- UserControl.cs
- FixedSOMTableCell.cs
- CharStorage.cs
- NullableConverter.cs
- IPEndPoint.cs
- DocumentDesigner.cs
- EpmCustomContentDeSerializer.cs
- NavigationEventArgs.cs
- HandlerBase.cs
- ThousandthOfEmRealPoints.cs
- OleAutBinder.cs
- FlatButtonAppearance.cs
- EventManager.cs
- MultiPageTextView.cs
- shaperfactory.cs
- ComplexPropertyEntry.cs
- CopyNodeSetAction.cs
- SByteStorage.cs
- DataGrid.cs
- HwndSubclass.cs