Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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. //------------------------------------------------------------------------------ ///// 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
- XDeferredAxisSource.cs
- WindowsListViewItemCheckBox.cs
- TrustLevelCollection.cs
- SqlCacheDependency.cs
- CategoryGridEntry.cs
- ListChangedEventArgs.cs
- EntityDataSourceReferenceGroup.cs
- ProxyWebPartConnectionCollection.cs
- RayHitTestParameters.cs
- HtmlHead.cs
- SafeNativeMethods.cs
- SqlBuilder.cs
- ServiceParser.cs
- Random.cs
- PartialArray.cs
- CheckBox.cs
- CombinedGeometry.cs
- PasswordTextContainer.cs
- WindowsFormsHelpers.cs
- ElementHost.cs
- GridViewDeletedEventArgs.cs
- ProgressBar.cs
- XsdDateTime.cs
- ObjectAnimationUsingKeyFrames.cs
- CryptoKeySecurity.cs
- AutomationEvent.cs
- ConcurrencyMode.cs
- TypeInitializationException.cs
- SelectionWordBreaker.cs
- CompilerErrorCollection.cs
- SafePointer.cs
- DataGridHyperlinkColumn.cs
- HtmlTableCellCollection.cs
- TypeRefElement.cs
- VBIdentifierTrimConverter.cs
- MultiBindingExpression.cs
- Group.cs
- Journaling.cs
- FixedPageAutomationPeer.cs
- DataGrid.cs
- SynchronizedInputAdaptor.cs
- SerializerWriterEventHandlers.cs
- SafeReadContext.cs
- PcmConverter.cs
- _NtlmClient.cs
- BindingsCollection.cs
- ServiceMemoryGates.cs
- TransformerInfoCollection.cs
- FilteredDataSetHelper.cs
- Empty.cs
- ErasingStroke.cs
- ListItemCollection.cs
- SqlClientWrapperSmiStreamChars.cs
- QilChoice.cs
- QilReference.cs
- SafeWaitHandle.cs
- SmiRequestExecutor.cs
- XmlReflectionImporter.cs
- UnicodeEncoding.cs
- SelectionListComponentEditor.cs
- Buffer.cs
- InternalConfigHost.cs
- WebPartsSection.cs
- CopyCodeAction.cs
- XmlTextWriter.cs
- SQLInt64.cs
- ListSortDescriptionCollection.cs
- SourceFileBuildProvider.cs
- DocumentViewerConstants.cs
- XmlProcessingInstruction.cs
- FloaterParaClient.cs
- ManipulationDeltaEventArgs.cs
- MiniModule.cs
- LoginName.cs
- OlePropertyStructs.cs
- SpinWait.cs
- DbException.cs
- Site.cs
- BmpBitmapEncoder.cs
- WebPartMinimizeVerb.cs
- PageRanges.cs
- Blend.cs
- DbReferenceCollection.cs
- SqlWebEventProvider.cs
- Stack.cs
- Encoding.cs
- DataPointer.cs
- DropDownButton.cs
- BaseUriHelper.cs
- EntryIndex.cs
- BitmapInitialize.cs
- ObjectQueryExecutionPlan.cs
- PanelContainerDesigner.cs
- DataGridHeaderBorder.cs
- MethodAccessException.cs
- CommonXSendMessage.cs
- SafeNativeMethods.cs
- OdbcConnectionStringbuilder.cs
- CodeDOMProvider.cs
- ExpressionParser.cs