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
- WebPermission.cs
- LogArchiveSnapshot.cs
- XmlSchemaChoice.cs
- OleDbConnectionPoolGroupProviderInfo.cs
- AsymmetricSignatureDeformatter.cs
- UInt16Storage.cs
- ConsumerConnectionPoint.cs
- ExpressionsCollectionConverter.cs
- RandomNumberGenerator.cs
- ResourceCategoryAttribute.cs
- Formatter.cs
- DBCSCodePageEncoding.cs
- WebPartManagerInternals.cs
- WindowsRichEditRange.cs
- RegexRunner.cs
- BindingCompleteEventArgs.cs
- CompensationHandlingFilter.cs
- _KerberosClient.cs
- xmlsaver.cs
- _RequestCacheProtocol.cs
- OleDbStruct.cs
- ReturnValue.cs
- ToolStripRendererSwitcher.cs
- DataControlImageButton.cs
- Rotation3DAnimation.cs
- Descriptor.cs
- XhtmlBasicControlAdapter.cs
- XamlTemplateSerializer.cs
- KnownBoxes.cs
- Certificate.cs
- BinaryObjectInfo.cs
- XsltConvert.cs
- SchemaImporterExtensionElement.cs
- EntityCommandDefinition.cs
- CapabilitiesUse.cs
- SymmetricAlgorithm.cs
- MultiTrigger.cs
- ListViewDataItem.cs
- CompositionAdorner.cs
- CodeVariableDeclarationStatement.cs
- CaseInsensitiveComparer.cs
- ValidatedControlConverter.cs
- ConstructorExpr.cs
- ScaleTransform.cs
- HMACSHA384.cs
- CompilationSection.cs
- ObjectSet.cs
- PageThemeParser.cs
- TimeoutValidationAttribute.cs
- WeakReadOnlyCollection.cs
- TransactionChannelFactory.cs
- Vector3DCollection.cs
- XhtmlBasicTextBoxAdapter.cs
- RelationshipWrapper.cs
- ClockController.cs
- RuntimeEnvironment.cs
- DataGridTableStyleMappingNameEditor.cs
- DropShadowBitmapEffect.cs
- EmptyEnumerable.cs
- XmlSchemaSimpleContent.cs
- PanelDesigner.cs
- SqlDeflator.cs
- SqlDataSourceCache.cs
- WmlLinkAdapter.cs
- ProviderConnectionPoint.cs
- DiagnosticsConfiguration.cs
- Permission.cs
- EncoderParameter.cs
- NonSerializedAttribute.cs
- WebConfigurationHost.cs
- DataBoundLiteralControl.cs
- OracleBoolean.cs
- BitFlagsGenerator.cs
- SchemaExporter.cs
- TreeViewItem.cs
- HttpHandlerActionCollection.cs
- EncoderParameters.cs
- OpenTypeCommon.cs
- ConstructorBuilder.cs
- WindowsRebar.cs
- SecurityContext.cs
- RadioButton.cs
- _UriSyntax.cs
- Metafile.cs
- RemoteWebConfigurationHostStream.cs
- RNGCryptoServiceProvider.cs
- ReceiveReply.cs
- StoragePropertyMapping.cs
- DragCompletedEventArgs.cs
- DiagnosticTrace.cs
- PermissionSetTriple.cs
- DispatchOperation.cs
- DataServiceQuery.cs
- CodeChecksumPragma.cs
- EventRouteFactory.cs
- GroupDescription.cs
- NameNode.cs
- CodeDefaultValueExpression.cs
- SqlBooleanizer.cs
- StateManagedCollection.cs