Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- CqlErrorHelper.cs
- WebPartEditVerb.cs
- BreakRecordTable.cs
- DomainConstraint.cs
- SpinLock.cs
- Rotation3DAnimationUsingKeyFrames.cs
- QilGeneratorEnv.cs
- ElementInit.cs
- MD5CryptoServiceProvider.cs
- RectIndependentAnimationStorage.cs
- TextModifierScope.cs
- DeobfuscatingStream.cs
- SEHException.cs
- PreparingEnlistment.cs
- DataServiceQueryException.cs
- StructuralType.cs
- XslCompiledTransform.cs
- EntityProviderFactory.cs
- PageParser.cs
- GridSplitterAutomationPeer.cs
- MessageDesigner.cs
- RectValueSerializer.cs
- BitConverter.cs
- XComponentModel.cs
- DataGridViewColumnEventArgs.cs
- DefaultAsyncDataDispatcher.cs
- MembershipSection.cs
- FormsAuthenticationConfiguration.cs
- SEHException.cs
- BaseDataListPage.cs
- GlobalizationSection.cs
- StructuredTypeEmitter.cs
- CursorConverter.cs
- DataGridViewRowStateChangedEventArgs.cs
- RadioButtonPopupAdapter.cs
- TraceSection.cs
- BamlVersionHeader.cs
- ToolStripItemTextRenderEventArgs.cs
- ElementProxy.cs
- HTTPNotFoundHandler.cs
- HeaderCollection.cs
- ContentFilePart.cs
- CodePageEncoding.cs
- mactripleDES.cs
- NullableIntAverageAggregationOperator.cs
- ServiceObjectContainer.cs
- dataobject.cs
- NetDataContractSerializer.cs
- ReadOnlyMetadataCollection.cs
- InternalException.cs
- TripleDES.cs
- ReversePositionQuery.cs
- StandardMenuStripVerb.cs
- InstanceView.cs
- Brush.cs
- RIPEMD160Managed.cs
- XmlIterators.cs
- FileSecurity.cs
- ErrorInfoXmlDocument.cs
- BitmapData.cs
- TraceLog.cs
- EntityDescriptor.cs
- MetaTableHelper.cs
- InheritanceContextChangedEventManager.cs
- AcceleratedTokenProviderState.cs
- TypeUtil.cs
- DynamicPropertyHolder.cs
- DelegateHelpers.Generated.cs
- WebPartManager.cs
- SAPIEngineTypes.cs
- CultureInfoConverter.cs
- SchemaCollectionCompiler.cs
- ContextQuery.cs
- SharedUtils.cs
- ComponentChangedEvent.cs
- AccessDataSourceView.cs
- IImplicitResourceProvider.cs
- DropDownButton.cs
- HelpKeywordAttribute.cs
- SecurityStandardsManager.cs
- SequentialUshortCollection.cs
- BitSet.cs
- IdleTimeoutMonitor.cs
- ErasingStroke.cs
- RemotingSurrogateSelector.cs
- MetabaseSettings.cs
- XmlTextWriter.cs
- CopyOnWriteList.cs
- QueryServiceConfigHandle.cs
- ProfileSettingsCollection.cs
- CellTreeSimplifier.cs
- BufferCache.cs
- iisPickupDirectory.cs
- CodeMemberField.cs
- ProviderMetadataCachedInformation.cs
- ObjectParameter.cs
- ColumnTypeConverter.cs
- ExtenderHelpers.cs
- FeatureAttribute.cs
- SubpageParaClient.cs