Code:
/ DotNET / DotNET / 8.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
- WebBrowserNavigatingEventHandler.cs
- XmlAnyAttributeAttribute.cs
- CodeTypeReferenceExpression.cs
- MsmqOutputSessionChannel.cs
- TableLayoutPanelCellPosition.cs
- InputEventArgs.cs
- ColorDialog.cs
- CustomSignedXml.cs
- GridViewSortEventArgs.cs
- VisualBrush.cs
- X509CertificateStore.cs
- BitmapMetadataEnumerator.cs
- Column.cs
- RequestStatusBarUpdateEventArgs.cs
- XmlNamedNodeMap.cs
- CompositionTarget.cs
- TransformCollection.cs
- NamedPermissionSet.cs
- ObjectQuery_EntitySqlExtensions.cs
- XmlSchemaComplexContent.cs
- HMACSHA1.cs
- SourceElementsCollection.cs
- WinCategoryAttribute.cs
- PointLightBase.cs
- RuntimeConfigurationRecord.cs
- KeyedHashAlgorithm.cs
- NewArrayExpression.cs
- ConfigXmlAttribute.cs
- XmlSchemaNotation.cs
- XmlnsPrefixAttribute.cs
- EntityDataSourceWrapperPropertyDescriptor.cs
- DescriptionAttribute.cs
- FixUp.cs
- ProfileEventArgs.cs
- EndEvent.cs
- MenuCommand.cs
- XmlNullResolver.cs
- RadialGradientBrush.cs
- PageParserFilter.cs
- ObjectDataSourceSelectingEventArgs.cs
- XPathMessageFilter.cs
- PopupRootAutomationPeer.cs
- TraceListeners.cs
- While.cs
- BadImageFormatException.cs
- PackageFilter.cs
- Processor.cs
- TypedElement.cs
- SoapElementAttribute.cs
- FormatterConverter.cs
- DBConnectionString.cs
- FilteredAttributeCollection.cs
- DesignTimeTemplateParser.cs
- NonSerializedAttribute.cs
- LazyTextWriterCreator.cs
- CompositeFontInfo.cs
- ByteStack.cs
- ListViewEditEventArgs.cs
- CollectionBase.cs
- Storyboard.cs
- StyleCollection.cs
- TransactionChannelFaultConverter.cs
- sqlstateclientmanager.cs
- SkewTransform.cs
- ToolStripSplitStackLayout.cs
- ListViewPagedDataSource.cs
- TextRangeEdit.cs
- QueueException.cs
- MediaTimeline.cs
- EditingScopeUndoUnit.cs
- StoryFragments.cs
- DataGridColumn.cs
- DesignerCategoryAttribute.cs
- SoapAttributeOverrides.cs
- MimeMapping.cs
- ChannelTraceRecord.cs
- NumberSubstitution.cs
- TextBlock.cs
- XmlSerializationWriter.cs
- SparseMemoryStream.cs
- MergeFailedEvent.cs
- InlineUIContainer.cs
- ComponentRenameEvent.cs
- TextPointer.cs
- CultureTableRecord.cs
- DataObjectAttribute.cs
- ControlCachePolicy.cs
- XmlEncodedRawTextWriter.cs
- ContextMenuStrip.cs
- OdbcConnection.cs
- HtmlWindowCollection.cs
- PatternMatcher.cs
- DataGridViewBand.cs
- DataPagerFieldItem.cs
- BamlLocalizer.cs
- SafeArchiveContext.cs
- ErrorWebPart.cs
- FormViewDesigner.cs
- ResourcePermissionBase.cs
- DefaultProxySection.cs