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
- UndoEngine.cs
- SamlConstants.cs
- ApplicationManager.cs
- RecognitionEventArgs.cs
- TemplateXamlTreeBuilder.cs
- CopyNamespacesAction.cs
- SizeAnimationUsingKeyFrames.cs
- StylusPoint.cs
- DataGridViewCellStyle.cs
- DataTable.cs
- RoleExceptions.cs
- M3DUtil.cs
- DSASignatureFormatter.cs
- FixedHighlight.cs
- DefaultTypeArgumentAttribute.cs
- X509Utils.cs
- ThicknessAnimation.cs
- URI.cs
- SiteMapDataSource.cs
- CompositionDesigner.cs
- HttpsHostedTransportConfiguration.cs
- PageCatalogPart.cs
- StringResourceManager.cs
- ServicePointManager.cs
- PolicyChain.cs
- DesignerTransactionCloseEvent.cs
- DataControlFieldCollection.cs
- TextContainerChangeEventArgs.cs
- XmlILStorageConverter.cs
- AttachedPropertyBrowsableWhenAttributePresentAttribute.cs
- PrintPreviewControl.cs
- MailWebEventProvider.cs
- Cursor.cs
- WeakReadOnlyCollection.cs
- ConnectionStringSettings.cs
- TheQuery.cs
- Utils.cs
- BamlTreeMap.cs
- ProvidersHelper.cs
- ArglessEventHandlerProxy.cs
- TabPage.cs
- CollectionCodeDomSerializer.cs
- XmlLanguageConverter.cs
- SevenBitStream.cs
- CacheVirtualItemsEvent.cs
- AudioStateChangedEventArgs.cs
- ConfigurationConverterBase.cs
- cryptoapiTransform.cs
- MultiDataTrigger.cs
- XmlTextAttribute.cs
- SupportedAddressingMode.cs
- TextServicesHost.cs
- SecurityContext.cs
- ByteViewer.cs
- RefreshEventArgs.cs
- InteropBitmapSource.cs
- Camera.cs
- NativeMethods.cs
- Command.cs
- AtomServiceDocumentSerializer.cs
- ConnectionConsumerAttribute.cs
- ElementHost.cs
- Encoding.cs
- CapabilitiesSection.cs
- ConditionValidator.cs
- TableAdapterManagerHelper.cs
- ToolStripTextBox.cs
- DecimalAnimation.cs
- EventLogPermissionAttribute.cs
- ModifyActivitiesPropertyDescriptor.cs
- VectorAnimation.cs
- CallbackBehaviorAttribute.cs
- CategoryGridEntry.cs
- DataServiceCollectionOfT.cs
- HwndTarget.cs
- ClrPerspective.cs
- AttachedPropertyMethodSelector.cs
- DesignerEventService.cs
- DescendentsWalkerBase.cs
- CommandManager.cs
- WebPartDisplayModeCollection.cs
- ModuleBuilder.cs
- EditorZone.cs
- ThreadAbortException.cs
- metadatamappinghashervisitor.cs
- FocusManager.cs
- PeerContact.cs
- CodePageEncoding.cs
- Assembly.cs
- ClassHandlersStore.cs
- Schema.cs
- IRCollection.cs
- BCryptNative.cs
- Descriptor.cs
- DocumentViewerHelper.cs
- Formatter.cs
- ZipIOCentralDirectoryBlock.cs
- ToolboxItemAttribute.cs
- XmlSerializerVersionAttribute.cs
- DynamicValidatorEventArgs.cs