Code:
/ FX-1434 / FX-1434 / 1.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;
///
///
/// Identifies a cell in the grid.
///
[SuppressMessage("Microsoft.Performance", "CA1815:OverrideEqualsAndOperatorEqualsOnValueTypes")]
public struct DataGridCell {
private int rowNumber;
private int columnNumber;
///
///
/// Gets or sets the number of a column in the control.
///
public int ColumnNumber {
get {
return columnNumber;
}
set {
columnNumber = value;
}
}
///
///
/// Gets or sets the number of a row in the control.
///
public int RowNumber {
get {
return rowNumber;
}
set {
rowNumber = value;
}
}
///
///
///
/// Initializes a new instance of the class.
///
///
public DataGridCell(int r, int c) {
this.rowNumber = r;
this.columnNumber = c;
}
///
///
///
/// Gets a value indicating whether the is identical to a second
/// .
///
///
[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 hash value that uniquely identifies the cell.
///
///
public override int GetHashCode() {
return ((~rowNumber * (columnNumber+1)) & 0x00ffff00) >> 8;
}
///
///
///
/// Gets the row number and column number of 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ConnectionConsumerAttribute.cs
- NodeFunctions.cs
- EventLogSession.cs
- CardSpaceException.cs
- UpdateInfo.cs
- CompilerTypeWithParams.cs
- SynchronizationLockException.cs
- Identifier.cs
- ColorBuilder.cs
- PtsContext.cs
- FactoryRecord.cs
- QilCloneVisitor.cs
- TcpServerChannel.cs
- PeerTransportBindingElement.cs
- TextureBrush.cs
- XmlDataProvider.cs
- SmtpNegotiateAuthenticationModule.cs
- RectAnimationClockResource.cs
- PartialCachingAttribute.cs
- XmlILModule.cs
- Rights.cs
- AllowedAudienceUriElement.cs
- ResXResourceReader.cs
- Literal.cs
- DecimalConverter.cs
- ModelUIElement3D.cs
- BooleanToSelectiveScrollingOrientationConverter.cs
- ConstructorArgumentAttribute.cs
- CalendarAutoFormatDialog.cs
- LongValidatorAttribute.cs
- UndirectedGraph.cs
- HttpDateParse.cs
- OracleBFile.cs
- StoreItemCollection.Loader.cs
- OutputCacheSettingsSection.cs
- DataGridView.cs
- OdbcParameter.cs
- regiisutil.cs
- CurrencyManager.cs
- DTCTransactionManager.cs
- HttpChannelHelper.cs
- MailWriter.cs
- SettingsBindableAttribute.cs
- CommaDelimitedStringAttributeCollectionConverter.cs
- AutomationEventArgs.cs
- CookielessHelper.cs
- SchemaTypeEmitter.cs
- WindowsServiceElement.cs
- SecurityPermission.cs
- TCPListener.cs
- ErrorFormatterPage.cs
- TypographyProperties.cs
- WSSecurityOneDotOneSendSecurityHeader.cs
- SqlCacheDependencyDatabaseCollection.cs
- WriteTimeStream.cs
- baseaxisquery.cs
- COM2IDispatchConverter.cs
- StrongNameIdentityPermission.cs
- QueueException.cs
- AdornedElementPlaceholder.cs
- SQLRoleProvider.cs
- SynchronizationHandlesCodeDomSerializer.cs
- UdpReplyToBehavior.cs
- RowUpdatingEventArgs.cs
- ConfigViewGenerator.cs
- Collection.cs
- DependencyPropertyValueSerializer.cs
- MonitorWrapper.cs
- TraceContextRecord.cs
- ExpressionWriter.cs
- MultitargetUtil.cs
- SafeNativeMethods.cs
- DropShadowBitmapEffect.cs
- EmptyQuery.cs
- QilInvoke.cs
- ThemeInfoAttribute.cs
- Latin1Encoding.cs
- KeyFrames.cs
- RootBrowserWindowAutomationPeer.cs
- DatasetMethodGenerator.cs
- TabletCollection.cs
- ContentOperations.cs
- CodeMemberMethod.cs
- CreateUserWizard.cs
- WebPartConnectionsConfigureVerb.cs
- MaskPropertyEditor.cs
- DrawingVisualDrawingContext.cs
- DataRowExtensions.cs
- VirtualDirectoryMapping.cs
- LookupBindingPropertiesAttribute.cs
- ReadOnlyPropertyMetadata.cs
- MenuItemStyleCollectionEditor.cs
- Dictionary.cs
- Latin1Encoding.cs
- CLSCompliantAttribute.cs
- SecurityChannelFactory.cs
- SerializationHelper.cs
- SubpageParaClient.cs
- PropertyMetadata.cs
- EntityUtil.cs