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
- VectorValueSerializer.cs
- CLSCompliantAttribute.cs
- ColumnHeaderConverter.cs
- FontFamilyConverter.cs
- SingleStorage.cs
- SQLDouble.cs
- EnvelopedPkcs7.cs
- JapaneseCalendar.cs
- KeyedHashAlgorithm.cs
- ParsedAttributeCollection.cs
- SqlErrorCollection.cs
- HtmlElementCollection.cs
- PropertyMapper.cs
- FontFamilyValueSerializer.cs
- MessageBox.cs
- SoapSchemaExporter.cs
- BindableTemplateBuilder.cs
- ProcessModelInfo.cs
- SqlCommandBuilder.cs
- TransactionChannelFaultConverter.cs
- ProcessInfo.cs
- WaitHandle.cs
- Evidence.cs
- TripleDES.cs
- DynamicVirtualDiscoSearcher.cs
- xml.cs
- AstNode.cs
- PenLineCapValidation.cs
- HandlerBase.cs
- DecoderFallback.cs
- SQLByteStorage.cs
- DetailsViewDeletedEventArgs.cs
- ServiceNameCollection.cs
- SortedList.cs
- FlowLayout.cs
- TreeViewItemAutomationPeer.cs
- ContractDescription.cs
- DataBinder.cs
- SessionParameter.cs
- SystemFonts.cs
- MonitorWrapper.cs
- TextBounds.cs
- BinaryReader.cs
- FramingChannels.cs
- _LocalDataStore.cs
- ResourceDictionaryCollection.cs
- PrintDocument.cs
- EmptyReadOnlyDictionaryInternal.cs
- ColumnResizeUndoUnit.cs
- WebPageTraceListener.cs
- FrameworkTextComposition.cs
- QueryContinueDragEvent.cs
- MonthChangedEventArgs.cs
- SatelliteContractVersionAttribute.cs
- ListBoxItem.cs
- LogLogRecordHeader.cs
- ObjectListCommandCollection.cs
- BitmapEffectInput.cs
- XPathItem.cs
- SqlFunctionAttribute.cs
- RSAOAEPKeyExchangeFormatter.cs
- StringOutput.cs
- DbModificationClause.cs
- PersonalizableAttribute.cs
- UpdatableWrapper.cs
- ProviderUtil.cs
- DataTableReaderListener.cs
- ScriptingProfileServiceSection.cs
- ProgressPage.cs
- SqlDataSourceQueryEditor.cs
- DataControlImageButton.cs
- ObjectSet.cs
- WsdlBuildProvider.cs
- TextSearch.cs
- DiscreteKeyFrames.cs
- CommandBindingCollection.cs
- CookieHandler.cs
- WindowsListViewItemCheckBox.cs
- HttpValueCollection.cs
- VirtualizedCellInfoCollection.cs
- SystemIPInterfaceProperties.cs
- PublisherMembershipCondition.cs
- TemplateKey.cs
- StoreItemCollection.cs
- ExpressionList.cs
- DocumentOrderComparer.cs
- WebPartDeleteVerb.cs
- CreateUserWizardStep.cs
- DesignerTransaction.cs
- BulletChrome.cs
- ScrollProviderWrapper.cs
- X509ChainPolicy.cs
- ClientSettingsProvider.cs
- PenLineJoinValidation.cs
- FixedElement.cs
- JsonXmlDataContract.cs
- IdentityHolder.cs
- DecoratedNameAttribute.cs
- Base64Decoder.cs
- Polygon.cs