Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / DataGridViewHitTestInfo.cs / 1305376 / DataGridViewHitTestInfo.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System.Globalization; namespace System.Windows.Forms { public partial class DataGridView { ///public sealed class HitTestInfo { internal DataGridViewHitTestType type = DataGridViewHitTestType.None; //internal DataGridViewHitTestTypeCloseEdge edge = DataGridViewHitTestTypeCloseEdge.None; internal DataGridViewHitTestTypeInternal typeInternal = DataGridViewHitTestTypeInternal.None; internal int row; internal int col; internal int adjacentRow; internal int adjacentCol; internal int mouseBarOffset; internal int rowStart; internal int colStart; /// /// /// public static readonly HitTestInfo Nowhere = new HitTestInfo(); internal HitTestInfo() { this.type = DataGridViewHitTestType.None; this.typeInternal = DataGridViewHitTestTypeInternal.None; //this.edge = DataGridViewHitTestTypeCloseEdge.None; this.row = this.col = -1; this.rowStart = this.colStart = -1; this.adjacentRow = this.adjacentCol = -1; } ///Allows the ///object to inform you the /// extent of the grid. /// /// public int ColumnIndex { get { return this.col; } } ///Gets the number of the clicked column. ////// /// public int RowIndex { get { return this.row; } } ///Gets the /// number of the clicked row. ////// /// public int ColumnX { get { return this.colStart; } } ///Gets the left edge of the column. ////// /// public int RowY { get { return this.rowStart; } } ///Gets the top edge of the row. ////// /// public DataGridViewHitTestType Type { get { return this.type; } } ///Gets the part of the ///control, other than the row or column, that was /// clicked. /// /// public override bool Equals(object value) { HitTestInfo hti = value as HitTestInfo; if (hti != null) { return (this.type == hti.type && this.row == hti.row && this.col == hti.col); } return false; } ///Indicates whether two objects are identical. ////// /// public override int GetHashCode() { return WindowsFormsUtils.GetCombinedHashCodes((int) this.type, this.row, this.col); } ///Gets the hash code for the ///instance. /// /// public override string ToString() { return "{ Type:" + type.ToString() + ", Column:" + col.ToString(CultureInfo.CurrentCulture) + ", Row:" + row.ToString(CultureInfo.CurrentCulture) + " }"; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.Gets the type, column number and row number. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- HttpServerVarsCollection.cs
- ParameterReplacerVisitor.cs
- BreakRecordTable.cs
- MulticastNotSupportedException.cs
- InfoCardSchemas.cs
- WasEndpointConfigContainer.cs
- DemultiplexingClientMessageFormatter.cs
- Model3DGroup.cs
- ScrollBar.cs
- ListView.cs
- AlgoModule.cs
- WaitHandle.cs
- XmlDictionary.cs
- DelimitedListTraceListener.cs
- ElementsClipboardData.cs
- ValidatedControlConverter.cs
- ColumnMap.cs
- DbConnectionClosed.cs
- NativeMethods.cs
- HtmlTableRow.cs
- SocketInformation.cs
- DecoderFallback.cs
- RelOps.cs
- ExeContext.cs
- XmlBinaryReader.cs
- SystemPens.cs
- PeerServiceMessageContracts.cs
- DesignerCategoryAttribute.cs
- FragmentQueryKB.cs
- InputProcessorProfiles.cs
- AppDomainProtocolHandler.cs
- QueryCursorEventArgs.cs
- XPathNodeHelper.cs
- BitmapFrameEncode.cs
- DataTablePropertyDescriptor.cs
- MonitorWrapper.cs
- Int32AnimationBase.cs
- DrawingGroupDrawingContext.cs
- PartialTrustVisibleAssembly.cs
- SingleSelectRootGridEntry.cs
- SqlParameter.cs
- MatrixTransform3D.cs
- ListViewGroupItemCollection.cs
- DataColumn.cs
- MouseWheelEventArgs.cs
- InternalConfigSettingsFactory.cs
- SafeCryptoHandles.cs
- TimeSpanValidatorAttribute.cs
- NavigationPropertyAccessor.cs
- DynamicMetaObject.cs
- JoinElimination.cs
- ToolStripItemClickedEventArgs.cs
- FileDialogPermission.cs
- BaseDataListPage.cs
- Transform3D.cs
- NetworkInformationException.cs
- C14NUtil.cs
- SelectionListComponentEditor.cs
- NativeBuffer.cs
- DynamicILGenerator.cs
- BaseAddressPrefixFilterElement.cs
- WorkflowMarkupSerializationManager.cs
- XmlDataFileEditor.cs
- DropShadowEffect.cs
- CaseInsensitiveHashCodeProvider.cs
- DictionarySectionHandler.cs
- ELinqQueryState.cs
- basecomparevalidator.cs
- GridViewCommandEventArgs.cs
- DataGridParentRows.cs
- DataSourceCacheDurationConverter.cs
- SqlFormatter.cs
- VirtualizedItemPattern.cs
- CssClassPropertyAttribute.cs
- TemplateParser.cs
- CreationContext.cs
- ObjectView.cs
- GridViewColumn.cs
- EllipseGeometry.cs
- ContentOperations.cs
- FixedFindEngine.cs
- SafeSerializationManager.cs
- autovalidator.cs
- HScrollBar.cs
- GraphicsPath.cs
- CompressionTransform.cs
- OdbcError.cs
- InvokeProviderWrapper.cs
- Substitution.cs
- ButtonDesigner.cs
- KoreanLunisolarCalendar.cs
- ActiveXSite.cs
- ProbeMatchesApril2005.cs
- RequiredAttributeAttribute.cs
- SqlDataSourceParameterParser.cs
- MatrixStack.cs
- ProjectedSlot.cs
- RegistrySecurity.cs
- MailAddress.cs
- HttpProfileBase.cs