Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / DataGridCell.cs / 1305376 / DataGridCell.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System.Diagnostics; using System.Diagnostics.CodeAnalysis; using System; using System.Globalization; ////// /// [SuppressMessage("Microsoft.Performance", "CA1815:OverrideEqualsAndOperatorEqualsOnValueTypes")] public struct DataGridCell { private int rowNumber; private int columnNumber; ///Identifies a cell in the grid. ////// /// public int ColumnNumber { get { return columnNumber; } set { columnNumber = value; } } ///Gets or sets the number of a column in the ///control. /// /// public int RowNumber { get { return rowNumber; } set { rowNumber = value; } } ///Gets or sets the number of a row in the ///control. /// /// public DataGridCell(int r, int c) { this.rowNumber = r; this.columnNumber = c; } ////// Initializes a new instance of the ///class. /// /// /// [SuppressMessage("Microsoft.Usage", "CA2231:OverrideOperatorEqualsOnOverridingValueTypeEquals")] public override bool Equals(object o) { if (o is DataGridCell) { DataGridCell rhs = (DataGridCell)o; return (rhs.RowNumber == RowNumber && rhs.ColumnNumber == ColumnNumber); } else return false; } ////// Gets a value indicating whether the ///is identical to a second /// . /// /// /// public override int GetHashCode() { return ((~rowNumber * (columnNumber+1)) & 0x00ffff00) >> 8; } ////// Gets /// a hash value that uniquely identifies the cell. /// ////// /// public override string ToString() { return "DataGridCell {RowNumber = " + RowNumber.ToString(CultureInfo.CurrentCulture) + ", ColumnNumber = " + ColumnNumber.ToString(CultureInfo.CurrentCulture) + "}"; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ ///// Gets the row number and column number of the cell. /// ///// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System.Diagnostics; using System.Diagnostics.CodeAnalysis; using System; using System.Globalization; ////// /// [SuppressMessage("Microsoft.Performance", "CA1815:OverrideEqualsAndOperatorEqualsOnValueTypes")] public struct DataGridCell { private int rowNumber; private int columnNumber; ///Identifies a cell in the grid. ////// /// public int ColumnNumber { get { return columnNumber; } set { columnNumber = value; } } ///Gets or sets the number of a column in the ///control. /// /// public int RowNumber { get { return rowNumber; } set { rowNumber = value; } } ///Gets or sets the number of a row in the ///control. /// /// public DataGridCell(int r, int c) { this.rowNumber = r; this.columnNumber = c; } ////// Initializes a new instance of the ///class. /// /// /// [SuppressMessage("Microsoft.Usage", "CA2231:OverrideOperatorEqualsOnOverridingValueTypeEquals")] public override bool Equals(object o) { if (o is DataGridCell) { DataGridCell rhs = (DataGridCell)o; return (rhs.RowNumber == RowNumber && rhs.ColumnNumber == ColumnNumber); } else return false; } ////// Gets a value indicating whether the ///is identical to a second /// . /// /// /// public override int GetHashCode() { return ((~rowNumber * (columnNumber+1)) & 0x00ffff00) >> 8; } ////// Gets /// a hash value that uniquely identifies the cell. /// ////// /// public override string ToString() { return "DataGridCell {RowNumber = " + RowNumber.ToString(CultureInfo.CurrentCulture) + ", ColumnNumber = " + ColumnNumber.ToString(CultureInfo.CurrentCulture) + "}"; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Gets the row number and column number of the cell. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- JsonWriterDelegator.cs
- MultiTouchSystemGestureLogic.cs
- SelectionUIService.cs
- PartialArray.cs
- SynthesizerStateChangedEventArgs.cs
- AttributeAction.cs
- EntityContainer.cs
- Point3DIndependentAnimationStorage.cs
- RotateTransform3D.cs
- MouseActionConverter.cs
- ConfigXmlText.cs
- CellLabel.cs
- EDesignUtil.cs
- PasswordRecovery.cs
- ConfigXmlText.cs
- FormView.cs
- IPAddress.cs
- NetworkInterface.cs
- PersonalizationStateInfo.cs
- PostBackOptions.cs
- MessageSecurityOverTcp.cs
- RoutedEvent.cs
- ZipPackage.cs
- ListItemsCollectionEditor.cs
- SmtpSpecifiedPickupDirectoryElement.cs
- SafeNativeMethods.cs
- EventLogPermissionHolder.cs
- MachineKeyValidationConverter.cs
- OdbcConnectionStringbuilder.cs
- RuntimeHandles.cs
- RepeatEnumerable.cs
- Serializer.cs
- ItemsControl.cs
- CalendarDay.cs
- DataServiceException.cs
- NavigationEventArgs.cs
- CommandSet.cs
- GetPageNumberCompletedEventArgs.cs
- XmlSchemaInfo.cs
- TargetParameterCountException.cs
- XPathNavigatorReader.cs
- RangeValueProviderWrapper.cs
- GradientBrush.cs
- _IPv6Address.cs
- NavigationExpr.cs
- WebPartAuthorizationEventArgs.cs
- SQLBoolean.cs
- CLSCompliantAttribute.cs
- LinqToSqlWrapper.cs
- CustomAttributeSerializer.cs
- ProfileManager.cs
- DbProviderManifest.cs
- Setter.cs
- IPEndPoint.cs
- ProtectedUri.cs
- XamlTypeMapper.cs
- BaseCollection.cs
- InfoCardRSAPKCS1SignatureDeformatter.cs
- ReflectionTypeLoadException.cs
- TdsValueSetter.cs
- TargetException.cs
- MatrixCamera.cs
- TryCatchDesigner.xaml.cs
- Rect.cs
- ChannelServices.cs
- DiffuseMaterial.cs
- Expander.cs
- PageContentCollection.cs
- IgnoreFileBuildProvider.cs
- MatrixKeyFrameCollection.cs
- SamlAuthorizationDecisionClaimResource.cs
- TypeExtensionConverter.cs
- DataExpression.cs
- SemaphoreSecurity.cs
- SoundPlayer.cs
- TextEffectResolver.cs
- XmlDocumentFragment.cs
- UnsafeNativeMethodsTablet.cs
- ComboBoxDesigner.cs
- AddInActivator.cs
- SubMenuStyleCollection.cs
- SurrogateSelector.cs
- PtsPage.cs
- CopyAttributesAction.cs
- SqlDataSourceQueryEditorForm.cs
- CssClassPropertyAttribute.cs
- Queue.cs
- DataGridViewColumnDividerDoubleClickEventArgs.cs
- RoutedUICommand.cs
- StorageSetMapping.cs
- EditorServiceContext.cs
- WorkflowServiceHostFactory.cs
- DataViewListener.cs
- HttpHostedTransportConfiguration.cs
- HexParser.cs
- XmlAttributeCache.cs
- Screen.cs
- PasswordBox.cs
- DoubleAnimationUsingKeyFrames.cs
- EntityContainerAssociationSet.cs