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
- FrameworkElementFactoryMarkupObject.cs
- CommandPlan.cs
- ISO2022Encoding.cs
- Facet.cs
- SHA384.cs
- OutputScopeManager.cs
- MutexSecurity.cs
- LazyInitializer.cs
- BinaryObjectReader.cs
- NotConverter.cs
- SafeFileHandle.cs
- VScrollBar.cs
- FormsAuthenticationModule.cs
- ConnectivityStatus.cs
- PaintValueEventArgs.cs
- PropVariant.cs
- PointCollection.cs
- TextDecorationCollection.cs
- CreateUserErrorEventArgs.cs
- MetadataItemCollectionFactory.cs
- AncillaryOps.cs
- TraceSource.cs
- StringAnimationUsingKeyFrames.cs
- ISessionStateStore.cs
- FileDialogPermission.cs
- TypeUtils.cs
- DataControlButton.cs
- XmlNotation.cs
- EndOfStreamException.cs
- ReferenceConverter.cs
- CommandValueSerializer.cs
- UnknownWrapper.cs
- TempFiles.cs
- SqlClientMetaDataCollectionNames.cs
- AnnotationObservableCollection.cs
- HttpConfigurationContext.cs
- XmlQualifiedName.cs
- ControlValuePropertyAttribute.cs
- DropDownList.cs
- ExtendedProtectionPolicyElement.cs
- MachinePropertyVariants.cs
- ScriptResourceInfo.cs
- LogReservationCollection.cs
- TextTreeRootTextBlock.cs
- XmlEncoding.cs
- StyleXamlParser.cs
- GridItemPatternIdentifiers.cs
- SqlCacheDependencySection.cs
- Package.cs
- DataGrid.cs
- ResourcesBuildProvider.cs
- Vector3dCollection.cs
- XmlCharType.cs
- CodeStatement.cs
- XXXInfos.cs
- SolidColorBrush.cs
- DefaultTextStore.cs
- ReflectPropertyDescriptor.cs
- CrossSiteScriptingValidation.cs
- _BufferOffsetSize.cs
- WebAdminConfigurationHelper.cs
- FloatMinMaxAggregationOperator.cs
- TableItemPatternIdentifiers.cs
- LinearKeyFrames.cs
- ObjectListCommandCollection.cs
- DetailsViewDeletedEventArgs.cs
- CodeIndexerExpression.cs
- UIPermission.cs
- XmlValidatingReaderImpl.cs
- ObjectPersistData.cs
- DeclaredTypeValidatorAttribute.cs
- TextContainerChangeEventArgs.cs
- SystemWebSectionGroup.cs
- DefaultClaimSet.cs
- BuilderInfo.cs
- EndOfStreamException.cs
- Tokenizer.cs
- ProtocolsConfiguration.cs
- ActionNotSupportedException.cs
- SessionEndingEventArgs.cs
- DataGridTextBoxColumn.cs
- GetWinFXPath.cs
- filewebresponse.cs
- PermissionSetTriple.cs
- EventDescriptorCollection.cs
- ListSourceHelper.cs
- SQlBooleanStorage.cs
- CompiledQueryCacheKey.cs
- InstanceLockTracking.cs
- GACIdentityPermission.cs
- DataGridViewComboBoxEditingControl.cs
- EntityViewGenerationAttribute.cs
- ModifyActivitiesPropertyDescriptor.cs
- PersonalizableAttribute.cs
- CompatibleIComparer.cs
- PropertyOrder.cs
- ConfigPathUtility.cs
- CryptoKeySecurity.cs
- WindowsRichEditRange.cs
- CheckPair.cs