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
- SqlCacheDependencySection.cs
- DuplicateWaitObjectException.cs
- UInt32Storage.cs
- ResolveInfo.cs
- MsmqTransportSecurity.cs
- ErrorWebPart.cs
- ComAwareEventInfo.cs
- IsolatedStorageFilePermission.cs
- storepermissionattribute.cs
- MissingManifestResourceException.cs
- DataGridRelationshipRow.cs
- RegexFCD.cs
- ParallelDesigner.cs
- XamlSerializerUtil.cs
- ErrorFormatterPage.cs
- CompModSwitches.cs
- OutputCacheEntry.cs
- ContextMenuAutomationPeer.cs
- CompiledQuery.cs
- InvalidPropValue.cs
- Vector.cs
- clipboard.cs
- OverflowException.cs
- CoTaskMemHandle.cs
- ResourceDictionary.cs
- UniqueContractNameValidationBehavior.cs
- XamlWriter.cs
- UrlParameterWriter.cs
- ManipulationPivot.cs
- PropertyGridCommands.cs
- VectorAnimation.cs
- dtdvalidator.cs
- RoutedUICommand.cs
- RpcResponse.cs
- TypeName.cs
- SimpleRecyclingCache.cs
- OpCodes.cs
- XmlElementList.cs
- HttpModulesInstallComponent.cs
- UrlMapping.cs
- XmlSchemaExporter.cs
- Underline.cs
- ShaderEffect.cs
- ConfigXmlComment.cs
- Object.cs
- PhysicalAddress.cs
- ConfigViewGenerator.cs
- XmlIlGenerator.cs
- DefaultExpressionVisitor.cs
- IgnoreFlushAndCloseStream.cs
- PageThemeCodeDomTreeGenerator.cs
- HiddenFieldPageStatePersister.cs
- DrawListViewColumnHeaderEventArgs.cs
- StringDictionary.cs
- IdentityReference.cs
- SynchronizationContextHelper.cs
- ProjectionCamera.cs
- SkewTransform.cs
- Int32AnimationUsingKeyFrames.cs
- Atom10ItemFormatter.cs
- VoiceSynthesis.cs
- UnsafeNetInfoNativeMethods.cs
- RegistryDataKey.cs
- Substitution.cs
- ListenDesigner.cs
- WindowsListViewGroupHelper.cs
- HotCommands.cs
- HashStream.cs
- ValueExpressions.cs
- MobileControlsSectionHelper.cs
- TextTreeTextNode.cs
- wmiprovider.cs
- MenuItemBindingCollection.cs
- ToolboxComponentsCreatedEventArgs.cs
- DesignTimeTemplateParser.cs
- FileDialog_Vista_Interop.cs
- CompositeControl.cs
- XmlLoader.cs
- LineGeometry.cs
- ExtendedPropertyDescriptor.cs
- WindowsListViewGroupHelper.cs
- UdpReplyToBehavior.cs
- SpnEndpointIdentity.cs
- ConfigurationConverterBase.cs
- LinkLabelLinkClickedEvent.cs
- AnnotationResourceCollection.cs
- XmlSchemaAnnotated.cs
- ColorConverter.cs
- LoginUtil.cs
- GlyphRunDrawing.cs
- WebControlAdapter.cs
- TreeViewAutomationPeer.cs
- UnsafeNativeMethods.cs
- AppAction.cs
- ByteConverter.cs
- OleAutBinder.cs
- ToolboxDataAttribute.cs
- FormParameter.cs
- LinkClickEvent.cs
- ConstantSlot.cs