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
- Parser.cs
- ConnectionStringsExpressionBuilder.cs
- LogRestartAreaEnumerator.cs
- HandledEventArgs.cs
- DesignTimeVisibleAttribute.cs
- CustomCategoryAttribute.cs
- PrivilegeNotHeldException.cs
- OAVariantLib.cs
- AppearanceEditorPart.cs
- WebPartVerbsEventArgs.cs
- AuthenticatedStream.cs
- WindowsImpersonationContext.cs
- Crc32.cs
- DesignerCategoryAttribute.cs
- WebScriptClientGenerator.cs
- ConnectionsZone.cs
- ImageButton.cs
- UriSection.cs
- XNameTypeConverter.cs
- Facet.cs
- BeginEvent.cs
- MetadataArtifactLoaderCompositeResource.cs
- PostBackOptions.cs
- ManagementQuery.cs
- ApplicationHost.cs
- PrintPreviewControl.cs
- _CacheStreams.cs
- XsltCompileContext.cs
- CommunicationObjectAbortedException.cs
- MetadataItemCollectionFactory.cs
- EncodingNLS.cs
- CopyNamespacesAction.cs
- fixedPageContentExtractor.cs
- WorkflowIdleElement.cs
- SerializationHelper.cs
- TakeQueryOptionExpression.cs
- XmlSchemaObjectTable.cs
- ShutDownListener.cs
- TimeSpanSecondsOrInfiniteConverter.cs
- LineServices.cs
- SingleSelectRootGridEntry.cs
- ReadOnlyPropertyMetadata.cs
- ExtenderProvidedPropertyAttribute.cs
- ObjectDataSourceSelectingEventArgs.cs
- SecurityHeaderElementInferenceEngine.cs
- PeerHopCountAttribute.cs
- XmlSchemaGroupRef.cs
- NumericPagerField.cs
- EmptyEnumerable.cs
- RichTextBoxAutomationPeer.cs
- ISAPIWorkerRequest.cs
- EditBehavior.cs
- HttpModuleCollection.cs
- BindingList.cs
- MyContact.cs
- ParameterSubsegment.cs
- SqlDataSourceCache.cs
- Quaternion.cs
- SafeCryptoHandles.cs
- Zone.cs
- ToolStripGrip.cs
- SingleAnimation.cs
- NotConverter.cs
- WindowsToolbarItemAsMenuItem.cs
- XmlTypeMapping.cs
- HostedElements.cs
- PropertyInformation.cs
- PageSettings.cs
- TemplateKeyConverter.cs
- InputLanguageEventArgs.cs
- RestClientProxyHandler.cs
- EntityExpressionVisitor.cs
- FixUp.cs
- ConnectivityStatus.cs
- DataSourceViewSchemaConverter.cs
- CapabilitiesSection.cs
- WsdlEndpointConversionContext.cs
- Table.cs
- RequestUriProcessor.cs
- TreeNodeCollection.cs
- FormViewPagerRow.cs
- FormClosingEvent.cs
- TextBox.cs
- HostingEnvironment.cs
- ServerValidateEventArgs.cs
- MetadataArtifactLoaderResource.cs
- TypeInfo.cs
- BitmapFrameEncode.cs
- Visitor.cs
- MultiView.cs
- DesignerValidationSummaryAdapter.cs
- SecurityUtils.cs
- BindingGraph.cs
- HostedHttpTransportManager.cs
- EdmSchemaError.cs
- PropertyItem.cs
- EntityUtil.cs
- WebColorConverter.cs
- ListViewAutomationPeer.cs
- UmAlQuraCalendar.cs