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
- CustomPopupPlacement.cs
- WebPartEditorApplyVerb.cs
- ObjectPersistData.cs
- mda.cs
- LoginName.cs
- IdleTimeoutMonitor.cs
- TextOutput.cs
- AcceptorSessionSymmetricMessageSecurityProtocol.cs
- LabelAutomationPeer.cs
- InstanceOwnerQueryResult.cs
- Solver.cs
- EntityWithChangeTrackerStrategy.cs
- ActiveXHelper.cs
- ToolStripLabel.cs
- EmptyQuery.cs
- SortDescriptionCollection.cs
- ScriptServiceAttribute.cs
- GeometryValueSerializer.cs
- ManagementDateTime.cs
- CompilationUnit.cs
- FormParameter.cs
- KernelTypeValidation.cs
- Int64Storage.cs
- TCPClient.cs
- Solver.cs
- StreamGeometryContext.cs
- HwndHostAutomationPeer.cs
- FlowDocumentPageViewerAutomationPeer.cs
- SqlCacheDependencySection.cs
- SkipStoryboardToFill.cs
- TypeNameConverter.cs
- ComplexLine.cs
- CodeLinePragma.cs
- Model3DGroup.cs
- Header.cs
- ListViewAutomationPeer.cs
- CqlParser.cs
- TimeoutException.cs
- RemoteWebConfigurationHost.cs
- UntypedNullExpression.cs
- FontFamilyConverter.cs
- XmlNamespaceManager.cs
- RepeaterItemCollection.cs
- HostingPreferredMapPath.cs
- InheritablePropertyChangeInfo.cs
- hresults.cs
- QilStrConcat.cs
- UnsafeNetInfoNativeMethods.cs
- TraceInternal.cs
- AnchoredBlock.cs
- PointLight.cs
- WebPartConnectionCollection.cs
- Debug.cs
- ApplicationFileParser.cs
- CombinedGeometry.cs
- NamespaceList.cs
- StackBuilderSink.cs
- RouteValueDictionary.cs
- PhonemeEventArgs.cs
- HttpFileCollectionWrapper.cs
- ProcessInputEventArgs.cs
- SchemaObjectWriter.cs
- CompatibleIComparer.cs
- HtmlControlPersistable.cs
- ManagedCodeMarkers.cs
- BindingFormattingDialog.cs
- TypeDescriptor.cs
- WebInvokeAttribute.cs
- WebDescriptionAttribute.cs
- RootNamespaceAttribute.cs
- CustomSignedXml.cs
- ControlsConfig.cs
- IsolatedStorageFileStream.cs
- StandardToolWindows.cs
- SafeProcessHandle.cs
- SizeKeyFrameCollection.cs
- AppDomain.cs
- AttachedProperty.cs
- WebPartMovingEventArgs.cs
- ViewValidator.cs
- DesignTimeTemplateParser.cs
- TransformerConfigurationWizardBase.cs
- DecimalFormatter.cs
- ObjectConverter.cs
- DefaultMergeHelper.cs
- DataGridViewSelectedRowCollection.cs
- DrawingBrush.cs
- CheckBox.cs
- ContentElementCollection.cs
- SqlRecordBuffer.cs
- SqlConnectionManager.cs
- Matrix3DConverter.cs
- SqlSelectStatement.cs
- RowSpanVector.cs
- SelectionProviderWrapper.cs
- FilterElement.cs
- SHA256.cs
- UmAlQuraCalendar.cs
- InputReferenceExpression.cs
- ContentType.cs