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
- DecoratedNameAttribute.cs
- HorizontalAlignConverter.cs
- RemotingException.cs
- baseaxisquery.cs
- ProtocolsConfigurationEntry.cs
- HttpListener.cs
- XmlDataCollection.cs
- SafeLocalMemHandle.cs
- WindowsListBox.cs
- XmlConvert.cs
- Vector3D.cs
- ReaderWriterLockWrapper.cs
- DecoderExceptionFallback.cs
- ClockGroup.cs
- InputLanguage.cs
- WebBrowserUriTypeConverter.cs
- MultiView.cs
- XPathEmptyIterator.cs
- XmlCharType.cs
- SettingsAttributeDictionary.cs
- FreezableDefaultValueFactory.cs
- SeparatorAutomationPeer.cs
- HttpCacheVaryByContentEncodings.cs
- EventProvider.cs
- HealthMonitoringSection.cs
- UrlPropertyAttribute.cs
- PolyQuadraticBezierSegmentFigureLogic.cs
- WindowsToolbarAsMenu.cs
- StorageEntitySetMapping.cs
- HttpTransportSecurity.cs
- DocumentViewer.cs
- ConvertEvent.cs
- RawKeyboardInputReport.cs
- Int32CollectionConverter.cs
- TextSyndicationContentKindHelper.cs
- Section.cs
- PersonalizationProviderCollection.cs
- JumpTask.cs
- SecurityHeaderLayout.cs
- JavaScriptObjectDeserializer.cs
- CrossSiteScriptingValidation.cs
- ScrollEvent.cs
- SvcMapFileLoader.cs
- ToolStripArrowRenderEventArgs.cs
- GenerateTemporaryAssemblyTask.cs
- EndpointBehaviorElementCollection.cs
- XPathDocument.cs
- SQLDoubleStorage.cs
- TrackingProfileDeserializationException.cs
- BufferModeSettings.cs
- LineSegment.cs
- DataColumn.cs
- KeyedCollection.cs
- XmlAttributeProperties.cs
- EventSourceCreationData.cs
- peersecurityelement.cs
- MarkupCompiler.cs
- ExceptionList.cs
- SqlDataReaderSmi.cs
- DoubleStorage.cs
- AutoSizeToolBoxItem.cs
- XpsLiterals.cs
- VirtualizingPanel.cs
- TextBoxAutoCompleteSourceConverter.cs
- IndexedWhereQueryOperator.cs
- EmptyEnumerable.cs
- InputEventArgs.cs
- SqlConnectionStringBuilder.cs
- InputMethod.cs
- SQLInt32.cs
- ConfigViewGenerator.cs
- SelectionHighlightInfo.cs
- StringValueConverter.cs
- HorizontalAlignConverter.cs
- QilStrConcat.cs
- WhitespaceRuleLookup.cs
- SmiContext.cs
- Bind.cs
- BasicHttpBindingElement.cs
- XPathExpr.cs
- DbgCompiler.cs
- TextRunTypographyProperties.cs
- AdPostCacheSubstitution.cs
- TrackingWorkflowEventArgs.cs
- FixedSOMSemanticBox.cs
- ZipIOExtraFieldZip64Element.cs
- TextTreeFixupNode.cs
- TrustManager.cs
- EventlogProvider.cs
- XmlSortKey.cs
- SecurityContextSecurityToken.cs
- RootBuilder.cs
- ToolStripPanelCell.cs
- CommonXSendMessage.cs
- XmlSchemaImporter.cs
- followingsibling.cs
- KeyedPriorityQueue.cs
- GenericEnumConverter.cs
- RectangleHotSpot.cs
- PointUtil.cs