Code:
/ FX-1434 / FX-1434 / 1.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
- HiddenField.cs
- AutomationElementIdentifiers.cs
- DataGridAddNewRow.cs
- SetterBase.cs
- TextBoxLine.cs
- ApplicationServiceHelper.cs
- UserPreferenceChangedEventArgs.cs
- OletxTransactionManager.cs
- ScriptingRoleServiceSection.cs
- SQLBinary.cs
- ReferencedAssembly.cs
- QuestionEventArgs.cs
- ResourceDescriptionAttribute.cs
- Slider.cs
- PropertyInfoSet.cs
- DocumentSchemaValidator.cs
- Timer.cs
- OLEDB_Util.cs
- DesignTimeDataBinding.cs
- BaseComponentEditor.cs
- MenuItemBindingCollection.cs
- IntegerFacetDescriptionElement.cs
- DataServiceSaveChangesEventArgs.cs
- ExcCanonicalXml.cs
- SqlNamer.cs
- SystemParameters.cs
- RuntimeIdentifierPropertyAttribute.cs
- NumberSubstitution.cs
- ObjectRef.cs
- UiaCoreApi.cs
- RegexCharClass.cs
- UriParserTemplates.cs
- StdRegProviderWrapper.cs
- embossbitmapeffect.cs
- MarkupExtensionSerializer.cs
- Int32Rect.cs
- SynchronizedRandom.cs
- XmlQualifiedName.cs
- BaseCodeDomTreeGenerator.cs
- TextSerializer.cs
- TraceData.cs
- BStrWrapper.cs
- RectValueSerializer.cs
- FixUp.cs
- DynamicResourceExtension.cs
- NotifyParentPropertyAttribute.cs
- DelegatedStream.cs
- ClusterSafeNativeMethods.cs
- TypeSource.cs
- RowUpdatingEventArgs.cs
- DataGridViewImageColumn.cs
- DataBindingCollection.cs
- StringToken.cs
- DataSet.cs
- DataGridViewRowErrorTextNeededEventArgs.cs
- Tokenizer.cs
- Parsers.cs
- MouseEventArgs.cs
- IOThreadTimer.cs
- TileModeValidation.cs
- RowParagraph.cs
- cookie.cs
- EntityObject.cs
- XsltContext.cs
- MediaTimeline.cs
- PropertyTab.cs
- WorkflowInstanceExtensionManager.cs
- PropertyMetadata.cs
- HierarchicalDataBoundControl.cs
- BufferedWebEventProvider.cs
- DynamicILGenerator.cs
- ExpressionBuilder.cs
- EventLogPermissionEntry.cs
- FontStretchConverter.cs
- MultipartIdentifier.cs
- SchemaEntity.cs
- SkipStoryboardToFill.cs
- CodeAttachEventStatement.cs
- DataSourceExpressionCollection.cs
- CaseInsensitiveComparer.cs
- BigInt.cs
- SoapClientMessage.cs
- ElementNotEnabledException.cs
- UnsafeNativeMethods.cs
- TypeConverter.cs
- ServicePointManagerElement.cs
- CodeValidator.cs
- ScriptManagerProxy.cs
- RectAnimationClockResource.cs
- ProtocolsConfiguration.cs
- CultureInfoConverter.cs
- UiaCoreTypesApi.cs
- ObjectNotFoundException.cs
- RuleProcessor.cs
- DataGridViewTextBoxColumn.cs
- SqlTransaction.cs
- IdnMapping.cs
- MethodBuilderInstantiation.cs
- DiagnosticTraceSource.cs
- SafeThemeHandle.cs