Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / DataGridViewCellParsingEventArgs.cs / 1305376 / 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
- dataprotectionpermissionattribute.cs
- CompositeControlDesigner.cs
- MetadataPropertyvalue.cs
- ColorMatrix.cs
- TagMapInfo.cs
- RegexRunnerFactory.cs
- TextTreeTextNode.cs
- FastEncoder.cs
- SmiEventStream.cs
- MsdtcClusterUtils.cs
- FontConverter.cs
- GenericPrincipal.cs
- AuthenticationService.cs
- SecurityCriticalDataForSet.cs
- ItemCollection.cs
- DiscreteKeyFrames.cs
- RealProxy.cs
- Size3D.cs
- BatchServiceHost.cs
- DrawTreeNodeEventArgs.cs
- EditorAttribute.cs
- TextOutput.cs
- PrintPreviewDialog.cs
- CompiledRegexRunner.cs
- CorrelationManager.cs
- XmlSortKeyAccumulator.cs
- SelectionUIHandler.cs
- CursorConverter.cs
- XmlValidatingReader.cs
- LocatorPartList.cs
- IERequestCache.cs
- XsltInput.cs
- QueryCacheEntry.cs
- LoginView.cs
- GacUtil.cs
- MemberInfoSerializationHolder.cs
- FontSourceCollection.cs
- Funcletizer.cs
- PropertyMapper.cs
- cookiecontainer.cs
- BitmapMetadata.cs
- cookiecollection.cs
- ContainerUIElement3D.cs
- ButtonChrome.cs
- OdbcErrorCollection.cs
- NullEntityWrapper.cs
- QilXmlReader.cs
- ExecutionEngineException.cs
- DataGridViewRowConverter.cs
- DoubleAnimationUsingKeyFrames.cs
- CryptoKeySecurity.cs
- UserPersonalizationStateInfo.cs
- MSHTMLHost.cs
- DecimalAnimation.cs
- XsltContext.cs
- BookmarkList.cs
- DesignerTextViewAdapter.cs
- FaultBookmark.cs
- Line.cs
- DeviceContext2.cs
- PlatformCulture.cs
- DataRelationPropertyDescriptor.cs
- LazyTextWriterCreator.cs
- ItemsPanelTemplate.cs
- UrlAuthorizationModule.cs
- SessionStateContainer.cs
- AttachmentCollection.cs
- TextDecorationCollection.cs
- TreeViewCancelEvent.cs
- Accessors.cs
- WebConfigurationHostFileChange.cs
- StateItem.cs
- Vector3DCollection.cs
- CursorInteropHelper.cs
- MissingMethodException.cs
- Rect3DConverter.cs
- WorkerRequest.cs
- ThreadPool.cs
- CaseInsensitiveComparer.cs
- SoapReflector.cs
- DbConnectionFactory.cs
- XPathExpr.cs
- MailDefinitionBodyFileNameEditor.cs
- LineGeometry.cs
- MD5.cs
- SystemUnicastIPAddressInformation.cs
- SizeAnimationBase.cs
- ContentControl.cs
- WindowsPen.cs
- EmbeddedMailObject.cs
- ToolboxItemFilterAttribute.cs
- RowBinding.cs
- WebReferencesBuildProvider.cs
- ServiceModelSecurityTokenTypes.cs
- SqlDataSourceCustomCommandPanel.cs
- GenericEnumConverter.cs
- NetDataContractSerializer.cs
- DataBoundLiteralControl.cs
- XmlDataContract.cs
- Operator.cs