Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / 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. // Copyright (c) Microsoft Corporation. All rights reserved./// 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
- ClipboardProcessor.cs
- CredentialManagerDialog.cs
- Switch.cs
- ControlPropertyNameConverter.cs
- MenuBindingsEditor.cs
- LayoutTable.cs
- StringPropertyBuilder.cs
- PbrsForward.cs
- DecoderNLS.cs
- CssClassPropertyAttribute.cs
- Boolean.cs
- MergeLocalizationDirectives.cs
- TypeCollectionPropertyEditor.cs
- MemoryStream.cs
- DataGridViewLayoutData.cs
- SelectedGridItemChangedEvent.cs
- CacheVirtualItemsEvent.cs
- QilCloneVisitor.cs
- MemoryPressure.cs
- FormViewRow.cs
- PackageDigitalSignatureManager.cs
- AssemblyNameUtility.cs
- _RequestCacheProtocol.cs
- CardSpacePolicyElement.cs
- DataSource.cs
- DmlSqlGenerator.cs
- PageHandlerFactory.cs
- SortDescription.cs
- EventProviderWriter.cs
- mediaclock.cs
- ConfigurationManagerInternalFactory.cs
- ComplexPropertyEntry.cs
- TreeNodeCollection.cs
- DataStreamFromComStream.cs
- BindingContext.cs
- XhtmlTextWriter.cs
- CommandPlan.cs
- ContentAlignmentEditor.cs
- BezierSegment.cs
- ActivityTrace.cs
- XmlSchemaComplexType.cs
- SigningDialog.cs
- transactioncontext.cs
- CommonGetThemePartSize.cs
- EventLogEntryCollection.cs
- ButtonAutomationPeer.cs
- CallContext.cs
- DataGrid.cs
- CompilerInfo.cs
- PreservationFileReader.cs
- sqlinternaltransaction.cs
- EventLogPermissionAttribute.cs
- BamlLocalizabilityResolver.cs
- SiteMapNode.cs
- ColorTransformHelper.cs
- ReadonlyMessageFilter.cs
- CallContext.cs
- Timer.cs
- FolderLevelBuildProviderCollection.cs
- ReferentialConstraint.cs
- SynthesizerStateChangedEventArgs.cs
- AppearanceEditorPart.cs
- HostProtectionPermission.cs
- EntityDataSourceStatementEditor.cs
- FormViewRow.cs
- Clock.cs
- CollectionViewProxy.cs
- TokenBasedSet.cs
- UrlMappingsSection.cs
- DLinqColumnProvider.cs
- WriteLineDesigner.xaml.cs
- HttpAsyncResult.cs
- VisualState.cs
- PnrpPermission.cs
- CustomPopupPlacement.cs
- IDispatchConstantAttribute.cs
- QueryComponents.cs
- VisualCollection.cs
- ScriptResourceHandler.cs
- WebControlAdapter.cs
- TargetControlTypeAttribute.cs
- ImageFormat.cs
- EventWaitHandleSecurity.cs
- SwitchLevelAttribute.cs
- Bezier.cs
- MultiTrigger.cs
- TreeNodeStyleCollection.cs
- XhtmlConformanceSection.cs
- XmlWriterSettings.cs
- ClientProxyGenerator.cs
- UTF32Encoding.cs
- PngBitmapEncoder.cs
- RelationshipEndMember.cs
- DSACryptoServiceProvider.cs
- VectorAnimation.cs
- EventRecordWrittenEventArgs.cs
- GregorianCalendar.cs
- NextPreviousPagerField.cs
- IdnElement.cs
- PassportPrincipal.cs