Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / WinForms / Managed / System / WinForms / DataGridCell.cs / 1 / 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. // Copyright (c) Microsoft Corporation. All rights reserved./// 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
- LOSFormatter.cs
- EntryIndex.cs
- DataSourceConverter.cs
- MemoryMappedFileSecurity.cs
- UnaryExpression.cs
- FilterableAttribute.cs
- XmlIncludeAttribute.cs
- RectAnimationBase.cs
- ProbeMatchesApril2005.cs
- NumberSubstitution.cs
- KeyEvent.cs
- BlurEffect.cs
- ItemContainerPattern.cs
- DetailsViewDeleteEventArgs.cs
- ListViewCancelEventArgs.cs
- GACIdentityPermission.cs
- FrameworkContentElement.cs
- RegionInfo.cs
- QueryTask.cs
- RegexNode.cs
- DesignerCommandAdapter.cs
- PersonalizationStateInfoCollection.cs
- AnimatedTypeHelpers.cs
- XmlSchemaInclude.cs
- NamespaceList.cs
- ShaderEffect.cs
- BinaryObjectInfo.cs
- ListViewItemCollectionEditor.cs
- Formatter.cs
- RelationshipConverter.cs
- StyleXamlParser.cs
- CodeExpressionCollection.cs
- Base64Encoding.cs
- XsltSettings.cs
- CodeGotoStatement.cs
- TypeConverterHelper.cs
- HTTPNotFoundHandler.cs
- DrawingGroup.cs
- ActivityExecutorOperation.cs
- ProfileEventArgs.cs
- NamedPipeTransportManager.cs
- HtmlControl.cs
- ElementMarkupObject.cs
- DataListItemEventArgs.cs
- SortedList.cs
- VScrollProperties.cs
- URIFormatException.cs
- DisplayNameAttribute.cs
- DependencyPropertyKey.cs
- XslUrlEditor.cs
- ProfilePropertyMetadata.cs
- ProjectionPlanCompiler.cs
- ListViewItemEventArgs.cs
- SignHashRequest.cs
- InheritedPropertyChangedEventArgs.cs
- ProfilePropertyNameValidator.cs
- WebPartConnectionsEventArgs.cs
- ToolStripOverflow.cs
- BitmapPalettes.cs
- SingleKeyFrameCollection.cs
- XmlSchemaNotation.cs
- Positioning.cs
- Stacktrace.cs
- XPathDocumentIterator.cs
- ExpandCollapseProviderWrapper.cs
- CodeEntryPointMethod.cs
- DispatcherFrame.cs
- OpenTypeLayoutCache.cs
- ObjectIDGenerator.cs
- Content.cs
- Overlapped.cs
- UInt64Converter.cs
- DynamicDocumentPaginator.cs
- AssemblyContextControlItem.cs
- ProjectionPlan.cs
- ConnectionConsumerAttribute.cs
- CapabilitiesUse.cs
- HwndAppCommandInputProvider.cs
- AssemblyCache.cs
- DataGridViewColumnCollection.cs
- TypeBuilder.cs
- MemberMaps.cs
- OutputCacheEntry.cs
- RewritingSimplifier.cs
- SqlRetyper.cs
- DetailsViewRowCollection.cs
- FactoryId.cs
- DefaultClaimSet.cs
- XmlNamespaceMapping.cs
- CompressedStack.cs
- SelectionPatternIdentifiers.cs
- DrawingContextWalker.cs
- RadioButtonPopupAdapter.cs
- ExpressionBuilder.cs
- LogArchiveSnapshot.cs
- TranslateTransform3D.cs
- FormsAuthenticationTicket.cs
- TrackingServices.cs
- DataSourceProvider.cs
- KeyGesture.cs