Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / WinForms / Managed / System / WinForms / DataGridViewHitTestInfo.cs / 1 / 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. ///// 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
- XmlDataProvider.cs
- XamlStyleSerializer.cs
- HandleValueEditor.cs
- WebControlAdapter.cs
- DependentList.cs
- StrokeNodeOperations.cs
- RequestSecurityTokenForGetBrowserToken.cs
- ISessionStateStore.cs
- TextTreeRootTextBlock.cs
- Type.cs
- LinqDataSourceDisposeEventArgs.cs
- BooleanKeyFrameCollection.cs
- InstanceDataCollectionCollection.cs
- EntityDataSourceContextDisposingEventArgs.cs
- LineGeometry.cs
- xmlsaver.cs
- EventLogWatcher.cs
- WpfPayload.cs
- AutoResizedEvent.cs
- wmiprovider.cs
- ParameterElement.cs
- ProtocolsConfiguration.cs
- SqlDataAdapter.cs
- securestring.cs
- SrgsOneOf.cs
- PropertyGridCommands.cs
- RequestCacheEntry.cs
- EventProxy.cs
- templategroup.cs
- Currency.cs
- SystemTcpStatistics.cs
- login.cs
- PropertyGrid.cs
- PersonalizableAttribute.cs
- LinkArea.cs
- TypeExtensionConverter.cs
- SqlLiftIndependentRowExpressions.cs
- HtmlElement.cs
- entityreference_tresulttype.cs
- GeneralEndpointIdentity.cs
- Variable.cs
- PreProcessor.cs
- ProfilePropertySettings.cs
- Byte.cs
- Msec.cs
- MulticastOption.cs
- TextViewBase.cs
- XamlSerializerUtil.cs
- ContentType.cs
- StartUpEventArgs.cs
- DataSpaceManager.cs
- SQLChars.cs
- TextParaClient.cs
- SqlBulkCopyColumnMapping.cs
- CodeNamespaceImport.cs
- SqlBuilder.cs
- MarkerProperties.cs
- WebPageTraceListener.cs
- TextElement.cs
- XMLSchema.cs
- TraceInternal.cs
- DrawingBrush.cs
- CatalogPartDesigner.cs
- PrintSchema.cs
- RotateTransform.cs
- EnumUnknown.cs
- WebConfigurationHost.cs
- COM2Properties.cs
- Config.cs
- SweepDirectionValidation.cs
- EntryIndex.cs
- NamespaceInfo.cs
- SafeRightsManagementQueryHandle.cs
- DocumentSignatureManager.cs
- BinHexEncoder.cs
- NamedPermissionSet.cs
- ServiceModelInstallComponent.cs
- DataSourceControl.cs
- FileNotFoundException.cs
- Transform.cs
- ChangeConflicts.cs
- SafeFileHandle.cs
- MachineKeySection.cs
- CapabilitiesPattern.cs
- DrawingServices.cs
- CryptoHandle.cs
- DataGridViewToolTip.cs
- XhtmlTextWriter.cs
- DrawListViewItemEventArgs.cs
- ColumnResizeAdorner.cs
- ContractCodeDomInfo.cs
- Frame.cs
- RijndaelManagedTransform.cs
- SEHException.cs
- HttpApplicationFactory.cs
- XmlCharacterData.cs
- RuleSettingsCollection.cs
- StaticSiteMapProvider.cs
- DataColumnPropertyDescriptor.cs
- ObjectMemberMapping.cs