Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / DataGridViewSortCompareEventArgs.cs / 1305376 / DataGridViewSortCompareEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System; using System.Diagnostics; using System.ComponentModel; ///public class DataGridViewSortCompareEventArgs : HandledEventArgs { private DataGridViewColumn dataGridViewColumn; private object cellValue1, cellValue2; private int sortResult, rowIndex1, rowIndex2; /// public DataGridViewSortCompareEventArgs(DataGridViewColumn dataGridViewColumn, object cellValue1, object cellValue2, int rowIndex1, int rowIndex2) { Debug.Assert(dataGridViewColumn != null); Debug.Assert(dataGridViewColumn.Index >= 0); this.dataGridViewColumn = dataGridViewColumn; this.cellValue1 = cellValue1; this.cellValue2 = cellValue2; this.rowIndex1 = rowIndex1; this.rowIndex2 = rowIndex2; } /// public object CellValue1 { get { return this.cellValue1; } } /// public object CellValue2 { get { return this.cellValue2; } } /// public DataGridViewColumn Column { get { return this.dataGridViewColumn; } } /// public int RowIndex1 { get { return this.rowIndex1; } } /// public int RowIndex2 { get { return this.rowIndex2; } } /// public int SortResult { get { return this.sortResult; } set { this.sortResult = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- BufferedReadStream.cs
- ByteStreamGeometryContext.cs
- LoadWorkflowCommand.cs
- RequestResponse.cs
- InputLangChangeEvent.cs
- BaseComponentEditor.cs
- TableParaClient.cs
- ScalarOps.cs
- ConfigurationLoaderException.cs
- ReflectionServiceProvider.cs
- NaturalLanguageHyphenator.cs
- odbcmetadatacollectionnames.cs
- Transform3D.cs
- TreeWalker.cs
- HttpVersion.cs
- DSACryptoServiceProvider.cs
- XPathDocumentBuilder.cs
- HyperLinkField.cs
- ControlBuilderAttribute.cs
- WeakReferenceKey.cs
- DataGridViewSelectedColumnCollection.cs
- SupportsEventValidationAttribute.cs
- TimeoutValidationAttribute.cs
- XmlBinaryReader.cs
- ConfigurationElement.cs
- EmptyElement.cs
- ISAPIApplicationHost.cs
- WsiProfilesElementCollection.cs
- ApplicationServiceManager.cs
- Compiler.cs
- CodeDOMUtility.cs
- TrackingProfileDeserializationException.cs
- XPathConvert.cs
- SafeNativeMethods.cs
- CacheVirtualItemsEvent.cs
- TextContainerHelper.cs
- ToolStripItemTextRenderEventArgs.cs
- Object.cs
- ParallelQuery.cs
- WhitespaceRuleLookup.cs
- PixelFormatConverter.cs
- OptimizedTemplateContentHelper.cs
- WorkflowItemsPresenter.cs
- FrameworkReadOnlyPropertyMetadata.cs
- AssertUtility.cs
- EmptyStringExpandableObjectConverter.cs
- PropertyMetadata.cs
- GeometryModel3D.cs
- KnownBoxes.cs
- Environment.cs
- EventWaitHandleSecurity.cs
- TdsParserStateObject.cs
- XmlUTF8TextReader.cs
- OutgoingWebRequestContext.cs
- HandleRef.cs
- DrawingServices.cs
- ValidationSummary.cs
- UnsignedPublishLicense.cs
- ComboBoxRenderer.cs
- WebSysDescriptionAttribute.cs
- InProcStateClientManager.cs
- FileVersionInfo.cs
- CallId.cs
- OracleDataReader.cs
- DragStartedEventArgs.cs
- SqlStatistics.cs
- ChangesetResponse.cs
- ProcessModelInfo.cs
- MultilineStringConverter.cs
- TypeInfo.cs
- SqlPersonalizationProvider.cs
- ChtmlTextBoxAdapter.cs
- DialogResultConverter.cs
- Soap12ProtocolReflector.cs
- TextBoxRenderer.cs
- TimeZoneInfo.cs
- TableLayoutPanelCellPosition.cs
- RootBuilder.cs
- OleDbError.cs
- ExpanderAutomationPeer.cs
- SeparatorAutomationPeer.cs
- ColumnReorderedEventArgs.cs
- ReservationCollection.cs
- SerializationEventsCache.cs
- wgx_render.cs
- CompositeFontFamily.cs
- DeclaredTypeElement.cs
- XPathSingletonIterator.cs
- InvalidTimeZoneException.cs
- SQLSingleStorage.cs
- InputLangChangeEvent.cs
- ControlValuePropertyAttribute.cs
- ObjectMemberMapping.cs
- DragCompletedEventArgs.cs
- ArrayConverter.cs
- WindowsScroll.cs
- StatusBarDrawItemEvent.cs
- ExtractedStateEntry.cs
- BeginCreateSecurityTokenRequest.cs
- OdbcConnectionHandle.cs