Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / WinForms / Managed / System / WinForms / DataGridViewCellParsingEventArgs.cs / 1 / DataGridViewCellParsingEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System; using System.Drawing; using System.ComponentModel; ///public class DataGridViewCellParsingEventArgs : ConvertEventArgs { private int rowIndex, columnIndex; private DataGridViewCellStyle inheritedCellStyle; private bool parsingApplied; /// public DataGridViewCellParsingEventArgs(int rowIndex, int columnIndex, object value, Type desiredType, DataGridViewCellStyle inheritedCellStyle) : base(value, desiredType) { this.rowIndex = rowIndex; this.columnIndex = columnIndex; this.inheritedCellStyle = inheritedCellStyle; } /// public int RowIndex { get { return this.rowIndex; } } /// public int ColumnIndex { get { return this.columnIndex; } } /// public DataGridViewCellStyle InheritedCellStyle { get { return this.inheritedCellStyle; } set { this.inheritedCellStyle = value; } } /// public bool ParsingApplied { get { return this.parsingApplied; } set { this.parsingApplied = value; } } } } // 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
- HiddenField.cs
- ThreadExceptionDialog.cs
- ErrorFormatterPage.cs
- RuntimeConfig.cs
- PingReply.cs
- DataGridViewCell.cs
- OutputWindow.cs
- SiteMapDataSourceView.cs
- ListItemCollection.cs
- LoginCancelEventArgs.cs
- ConnectionsZoneAutoFormat.cs
- ClickablePoint.cs
- MemberHolder.cs
- DataRowCollection.cs
- PreservationFileReader.cs
- DelegateHelpers.Generated.cs
- PublisherIdentityPermission.cs
- RawStylusInputCustomDataList.cs
- PipeException.cs
- OneOfTypeConst.cs
- WebEventCodes.cs
- ProxyHwnd.cs
- ValidationHelper.cs
- Brush.cs
- LocalizableResourceBuilder.cs
- NetworkInterface.cs
- ObjectListDesigner.cs
- UriTemplateMatchException.cs
- ClipboardData.cs
- ISAPIApplicationHost.cs
- WindowProviderWrapper.cs
- SortDescriptionCollection.cs
- ExpressionBuilder.cs
- RawStylusInput.cs
- RuntimeResourceSet.cs
- XamlClipboardData.cs
- AliasedSlot.cs
- JsonCollectionDataContract.cs
- JournalNavigationScope.cs
- HtmlTable.cs
- TypeForwardedToAttribute.cs
- GeneralTransform2DTo3DTo2D.cs
- DbDataSourceEnumerator.cs
- Array.cs
- HierarchicalDataSourceIDConverter.cs
- XmlChildNodes.cs
- SemaphoreFullException.cs
- ReadOnlyPropertyMetadata.cs
- LockCookie.cs
- DataGridPagingPage.cs
- LOSFormatter.cs
- ResolvePPIDRequest.cs
- ModulesEntry.cs
- DurableOperationContext.cs
- DataControlFieldHeaderCell.cs
- SafeHandle.cs
- LinkDesigner.cs
- CompiledELinqQueryState.cs
- UserUseLicenseDictionaryLoader.cs
- DataContractJsonSerializer.cs
- ItemsPanelTemplate.cs
- RegexMatchCollection.cs
- SqlDataRecord.cs
- TrackingMemoryStreamFactory.cs
- Matrix.cs
- SByteStorage.cs
- KeyedCollection.cs
- _BaseOverlappedAsyncResult.cs
- TcpConnectionPool.cs
- EmulateRecognizeCompletedEventArgs.cs
- NotCondition.cs
- FileIOPermission.cs
- cache.cs
- ProcessHost.cs
- PassportAuthenticationEventArgs.cs
- SortedDictionary.cs
- StrokeNodeOperations.cs
- Win32Native.cs
- HMAC.cs
- UrlAuthFailedErrorFormatter.cs
- MenuItemStyleCollection.cs
- ApplicationTrust.cs
- RuntimeHelpers.cs
- Utils.cs
- SqlTransaction.cs
- IHttpResponseInternal.cs
- Propagator.cs
- DataGridViewCellCancelEventArgs.cs
- RangeValueProviderWrapper.cs
- LabelLiteral.cs
- DPAPIProtectedConfigurationProvider.cs
- cryptoapiTransform.cs
- XmlDataSource.cs
- BamlStream.cs
- ResourceDictionary.cs
- ViewGenResults.cs
- SynchronizedRandom.cs
- CodeGroup.cs
- WindowsGraphicsCacheManager.cs
- InheritanceContextHelper.cs