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
- Filter.cs
- ResourcesBuildProvider.cs
- DataSourceSelectArguments.cs
- MailSettingsSection.cs
- MouseGesture.cs
- DeviceContext2.cs
- CasesDictionary.cs
- ToolBarButtonClickEvent.cs
- PropertyMapper.cs
- DeferredSelectedIndexReference.cs
- UpdateProgress.cs
- ServicePointManagerElement.cs
- HexParser.cs
- FormsIdentity.cs
- EntityClassGenerator.cs
- ReservationNotFoundException.cs
- TextServicesManager.cs
- PropertyManager.cs
- TextTreePropertyUndoUnit.cs
- WebPartRestoreVerb.cs
- PropertyEntry.cs
- MetaTableHelper.cs
- ObjectSet.cs
- BindingList.cs
- ConnectionStringSettingsCollection.cs
- HMACSHA1.cs
- LayoutEditorPart.cs
- CorrelationTokenInvalidatedHandler.cs
- ConfigurationPropertyCollection.cs
- InvariantComparer.cs
- Overlapped.cs
- __ComObject.cs
- Codec.cs
- RegistrySecurity.cs
- DesignerResources.cs
- CompleteWizardStep.cs
- ColumnHeaderCollectionEditor.cs
- View.cs
- sortedlist.cs
- DiagnosticsConfigurationHandler.cs
- FileChangesMonitor.cs
- WasHttpHandlersInstallComponent.cs
- ExecutionEngineException.cs
- CapabilitiesAssignment.cs
- ScriptHandlerFactory.cs
- CatalogZoneBase.cs
- RangeValidator.cs
- TextPointer.cs
- EntitySet.cs
- ExtensionFile.cs
- SafeNativeMemoryHandle.cs
- SqlCacheDependency.cs
- StreamDocument.cs
- AmbientProperties.cs
- SmiSettersStream.cs
- PartialArray.cs
- SubpageParaClient.cs
- RootBrowserWindowAutomationPeer.cs
- ObjectSecurity.cs
- KeyboardEventArgs.cs
- StyleConverter.cs
- PieceNameHelper.cs
- Span.cs
- HttpServerProtocol.cs
- dataobject.cs
- RedistVersionInfo.cs
- CheckPair.cs
- LinkLabelLinkClickedEvent.cs
- ParameterToken.cs
- CustomCredentialPolicy.cs
- VisualStyleRenderer.cs
- ToolStripDesigner.cs
- ListViewItemEventArgs.cs
- DataColumnPropertyDescriptor.cs
- OpenFileDialog.cs
- RegionIterator.cs
- FormViewInsertEventArgs.cs
- XmlSchemaFacet.cs
- ConnectionProviderAttribute.cs
- Int32Storage.cs
- OrderingExpression.cs
- ToolStripItem.cs
- TableAdapterManagerNameHandler.cs
- LayoutSettings.cs
- SqlInternalConnectionTds.cs
- RegexRunnerFactory.cs
- PointF.cs
- CfgRule.cs
- FilteredDataSetHelper.cs
- Win32.cs
- DictionarySectionHandler.cs
- ImageButton.cs
- serverconfig.cs
- WebPartActionVerb.cs
- RowSpanVector.cs
- HttpRuntimeSection.cs
- XmlSerializerSection.cs
- CurrentTimeZone.cs
- MetadataUtil.cs
- RtfToXamlReader.cs