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
- CollectionViewGroupRoot.cs
- Int16AnimationBase.cs
- SmtpMail.cs
- AccessViolationException.cs
- nulltextcontainer.cs
- AdRotatorDesigner.cs
- ToolStripDropDownItem.cs
- ThreadStateException.cs
- EventLogConfiguration.cs
- ProbeMatchesMessage11.cs
- XamlTreeBuilderBamlRecordWriter.cs
- TypeUsage.cs
- Encoding.cs
- ExtendedPropertyCollection.cs
- AlignmentYValidation.cs
- PersonalizationStateQuery.cs
- HierarchicalDataTemplate.cs
- DbgCompiler.cs
- DesignerListAdapter.cs
- elementinformation.cs
- FixedSOMPageElement.cs
- HelpFileFileNameEditor.cs
- DataBindingHandlerAttribute.cs
- GroupQuery.cs
- ControlPersister.cs
- BindingContext.cs
- _SslState.cs
- SchemaMerger.cs
- ConsoleEntryPoint.cs
- InsufficientMemoryException.cs
- Visitors.cs
- DataTemplateKey.cs
- AuthenticationModuleElement.cs
- TCEAdapterGenerator.cs
- IApplicationTrustManager.cs
- AnnotationHighlightLayer.cs
- ProcessModelSection.cs
- EnvelopedSignatureTransform.cs
- MenuAdapter.cs
- TCPListener.cs
- ServiceParser.cs
- Point3DCollectionConverter.cs
- CTreeGenerator.cs
- DocumentXPathNavigator.cs
- DetailsViewRowCollection.cs
- XmlIterators.cs
- CapabilitiesUse.cs
- Int32.cs
- Journal.cs
- ToolStripItemEventArgs.cs
- QuotedPrintableStream.cs
- MouseActionConverter.cs
- ErrorFormatter.cs
- XmlSchemaComplexContent.cs
- UrlPath.cs
- PkcsMisc.cs
- CodeChecksumPragma.cs
- MsmqEncryptionAlgorithm.cs
- MatrixIndependentAnimationStorage.cs
- AttachedAnnotation.cs
- Control.cs
- SimpleHandlerBuildProvider.cs
- TranslateTransform3D.cs
- CaseInsensitiveComparer.cs
- RefreshEventArgs.cs
- XPathNode.cs
- GridViewColumnHeader.cs
- SystemUnicastIPAddressInformation.cs
- DockingAttribute.cs
- VisualStateManager.cs
- JoinGraph.cs
- FixedSOMTextRun.cs
- XPathPatternBuilder.cs
- ApplicationServicesHostFactory.cs
- EasingKeyFrames.cs
- AsyncResult.cs
- SystemWebExtensionsSectionGroup.cs
- NativeCompoundFileAPIs.cs
- DecoderExceptionFallback.cs
- Int32CollectionValueSerializer.cs
- WindowsSysHeader.cs
- TheQuery.cs
- AsyncMethodInvoker.cs
- MulticastDelegate.cs
- DescendantOverDescendantQuery.cs
- SoapEnumAttribute.cs
- InstanceKey.cs
- LowerCaseStringConverter.cs
- Int32Animation.cs
- PathSegmentCollection.cs
- Attachment.cs
- ToolStripItem.cs
- ClientApiGenerator.cs
- TypeSystem.cs
- SelectedGridItemChangedEvent.cs
- MimeMapping.cs
- ThreadPoolTaskScheduler.cs
- IIS7WorkerRequest.cs
- XPathPatternParser.cs
- SiteMapProvider.cs