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 / 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.
//
//-----------------------------------------------------------------------------
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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- XmlWriterDelegator.cs
- CodeConditionStatement.cs
- SHA512.cs
- ISO2022Encoding.cs
- ConfigurationSectionGroup.cs
- ADConnectionHelper.cs
- DBAsyncResult.cs
- HandlerMappingMemo.cs
- FormViewInsertEventArgs.cs
- ForeignKeyConstraint.cs
- ISAPIApplicationHost.cs
- SQLBinaryStorage.cs
- WebPartHeaderCloseVerb.cs
- Rotation3DAnimation.cs
- StatusBarPanel.cs
- ProtocolsConfigurationEntry.cs
- WebBaseEventKeyComparer.cs
- UnsafeNativeMethods.cs
- SchemaNames.cs
- IdentityManager.cs
- Sequence.cs
- ImageClickEventArgs.cs
- DesignerTransactionCloseEvent.cs
- PropertyItemInternal.cs
- SectionInput.cs
- XmlExpressionDumper.cs
- HttpApplication.cs
- SettingsPropertyValue.cs
- ProxyWebPartManager.cs
- SingleAnimation.cs
- AttributedMetaModel.cs
- SystemThemeKey.cs
- WebPartsSection.cs
- UrlPath.cs
- BitSet.cs
- COM2TypeInfoProcessor.cs
- SerializableAttribute.cs
- COM2EnumConverter.cs
- SiteMapNodeItem.cs
- PublisherIdentityPermission.cs
- VectorAnimation.cs
- SymbolMethod.cs
- ObjectConverter.cs
- WebPartVerbsEventArgs.cs
- PathNode.cs
- SequenceDesigner.cs
- Utils.cs
- InputLanguageCollection.cs
- WaveHeader.cs
- Exceptions.cs
- ClientSettingsStore.cs
- CodeGenerator.cs
- RelatedCurrencyManager.cs
- DataGridPagerStyle.cs
- WebPartManager.cs
- DbConnectionHelper.cs
- Part.cs
- ControlValuePropertyAttribute.cs
- TextOnlyOutput.cs
- IgnoreSection.cs
- WeakReference.cs
- WebControlsSection.cs
- UpdateTranslator.cs
- MetadataHelper.cs
- SoapCodeExporter.cs
- SettingsPropertyCollection.cs
- ProviderUtil.cs
- FunctionParameter.cs
- SeekStoryboard.cs
- CompletionCallbackWrapper.cs
- ConnectionPoolManager.cs
- Win32PrintDialog.cs
- EventLogPermission.cs
- CodeDirectoryCompiler.cs
- SourceInterpreter.cs
- LinqDataSourceView.cs
- CommentEmitter.cs
- LocalizableAttribute.cs
- XmlUrlEditor.cs
- XD.cs
- SQLBytes.cs
- PipelineModuleStepContainer.cs
- StrokeSerializer.cs
- WebPartEditorApplyVerb.cs
- Preprocessor.cs
- ExpandableObjectConverter.cs
- UnsafeCollabNativeMethods.cs
- SqlInternalConnectionTds.cs
- NameValuePermission.cs
- OdbcRowUpdatingEvent.cs
- HelpInfo.cs
- MarkerProperties.cs
- RequiredFieldValidator.cs
- PrivilegeNotHeldException.cs
- TraceHandler.cs
- XmlCharType.cs
- GridViewActionList.cs
- RenderContext.cs
- AsymmetricAlgorithm.cs
- CopyCodeAction.cs