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

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- RemotingException.cs
- XamlWrapperReaders.cs
- LingerOption.cs
- AccessedThroughPropertyAttribute.cs
- WebDescriptionAttribute.cs
- HMACSHA384.cs
- DataControlFieldTypeEditor.cs
- GZipDecoder.cs
- AssemblyInfo.cs
- SystemWebCachingSectionGroup.cs
- JumpItem.cs
- BaseTreeIterator.cs
- ScriptMethodAttribute.cs
- XPathNodeInfoAtom.cs
- SerializationObjectManager.cs
- basecomparevalidator.cs
- ColorContext.cs
- BezierSegment.cs
- MachineKeyConverter.cs
- ExceptionRoutedEventArgs.cs
- COAUTHINFO.cs
- printdlgexmarshaler.cs
- MenuBase.cs
- FlowDocumentView.cs
- SkinBuilder.cs
- MethodCallExpression.cs
- Point4DConverter.cs
- ColorTranslator.cs
- FacetValueContainer.cs
- AsyncCompletedEventArgs.cs
- SequenceFullException.cs
- ByteStream.cs
- LoginCancelEventArgs.cs
- TextTreeNode.cs
- Assert.cs
- TextEndOfSegment.cs
- ValueType.cs
- ListViewItemMouseHoverEvent.cs
- DocumentPage.cs
- SelectionProviderWrapper.cs
- AutomationFocusChangedEventArgs.cs
- SqlConnectionHelper.cs
- DesignBinding.cs
- ServiceHostingEnvironment.cs
- EventWaitHandle.cs
- ProtocolsConfiguration.cs
- SmiSettersStream.cs
- StructuralType.cs
- SafeEventLogWriteHandle.cs
- rsa.cs
- TextProperties.cs
- BinaryNode.cs
- ToolStripDropDownMenu.cs
- TcpClientCredentialType.cs
- BindableAttribute.cs
- MediaContextNotificationWindow.cs
- ClientBase.cs
- StrongName.cs
- ButtonFieldBase.cs
- PageCache.cs
- ISessionStateStore.cs
- ConnectionPoint.cs
- ComponentConverter.cs
- ListMarkerSourceInfo.cs
- ImportContext.cs
- MsmqInputChannelListener.cs
- CodeAssignStatement.cs
- HostingEnvironmentException.cs
- DataGridViewCellStyle.cs
- DispatcherFrame.cs
- SemanticValue.cs
- XamlReaderHelper.cs
- UrlPath.cs
- NetworkInterface.cs
- LiteralText.cs
- sqlpipe.cs
- AbandonedMutexException.cs
- SafeBitVector32.cs
- OpenFileDialog.cs
- RequestTimeoutManager.cs
- ImageMap.cs
- FormsIdentity.cs
- ImplicitInputBrush.cs
- CodeLinePragma.cs
- DeclarativeCatalogPartDesigner.cs
- ProgramNode.cs
- SafeProcessHandle.cs
- WebBrowsableAttribute.cs
- ConstructorBuilder.cs
- EventMappingSettingsCollection.cs
- ZipIOFileItemStream.cs
- Win32SafeHandles.cs
- PersianCalendar.cs
- CacheEntry.cs
- DataGridItem.cs
- PenCursorManager.cs
- IOThreadTimer.cs
- TextInfo.cs
- ActivityCodeDomSerializer.cs
- BulletChrome.cs