Code:
/ 4.0 / 4.0 / untmp / 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. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- CommandManager.cs
- TimeStampChecker.cs
- ColorBlend.cs
- EventSetterHandlerConverter.cs
- RelatedImageListAttribute.cs
- _NTAuthentication.cs
- PatternMatchRules.cs
- WizardStepBase.cs
- CodeSubDirectoriesCollection.cs
- DataGridItemCollection.cs
- _ListenerResponseStream.cs
- XmlSerializerFactory.cs
- Point4D.cs
- GridViewColumnCollectionChangedEventArgs.cs
- KoreanCalendar.cs
- ReachDocumentSequenceSerializer.cs
- GeneralTransform.cs
- HttpCachePolicyElement.cs
- DataSourceControl.cs
- StorageTypeMapping.cs
- ExeContext.cs
- DataKeyArray.cs
- WhitespaceRuleReader.cs
- PropertyMapper.cs
- EpmSourceTree.cs
- ParentUndoUnit.cs
- ChangeNode.cs
- ResourcesChangeInfo.cs
- GridToolTip.cs
- DataGridTextBoxColumn.cs
- HtmlCommandAdapter.cs
- LogEntryHeaderSerializer.cs
- SchemaContext.cs
- CompoundFileStorageReference.cs
- InvalidContentTypeException.cs
- Separator.cs
- ProviderBase.cs
- _SpnDictionary.cs
- ReferenceEqualityComparer.cs
- Duration.cs
- EntityViewGenerationAttribute.cs
- PeerCollaboration.cs
- SoapObjectInfo.cs
- EventlogProvider.cs
- ToolStripContentPanelRenderEventArgs.cs
- EditorPartDesigner.cs
- WorkflowPageSetupDialog.cs
- HttpModule.cs
- CompleteWizardStep.cs
- TrackingWorkflowEventArgs.cs
- ServiceOperationListItem.cs
- WsdlBuildProvider.cs
- SerializationObjectManager.cs
- PageThemeBuildProvider.cs
- DataServiceException.cs
- WindowsScrollBar.cs
- FontFamilyConverter.cs
- EncoderParameter.cs
- FragmentQueryProcessor.cs
- LoginViewDesigner.cs
- SafeNativeMethodsCLR.cs
- HexParser.cs
- FilteredDataSetHelper.cs
- BitmapCodecInfo.cs
- ParserExtension.cs
- NativeWrapper.cs
- XsdValidatingReader.cs
- SelectedDatesCollection.cs
- DPTypeDescriptorContext.cs
- Query.cs
- ContentDisposition.cs
- SiteMapNode.cs
- WeakEventManager.cs
- Vector.cs
- BindingGroup.cs
- DataTableNewRowEvent.cs
- StorageEntityContainerMapping.cs
- ClientOptions.cs
- Relationship.cs
- EmptyElement.cs
- SchemaImporter.cs
- RoleExceptions.cs
- SchemaHelper.cs
- BlobPersonalizationState.cs
- TokenBasedSetEnumerator.cs
- DependentTransaction.cs
- CategoryGridEntry.cs
- MsmqTransportElement.cs
- WebPartZoneBase.cs
- Span.cs
- TraceHandler.cs
- WebPartExportVerb.cs
- BrowserDefinition.cs
- Sequence.cs
- InternalDispatchObject.cs
- MultipartContentParser.cs
- PatternMatcher.cs
- SafeEventLogWriteHandle.cs
- Span.cs
- CollectionChangedEventManager.cs