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 / DataGridViewDataErrorEventArgs.cs / 1 / DataGridViewDataErrorEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System; using System.Drawing; using System.Diagnostics; using System.ComponentModel; ///public class DataGridViewDataErrorEventArgs : DataGridViewCellCancelEventArgs { private Exception exception; private bool throwException; private DataGridViewDataErrorContexts context; /// public DataGridViewDataErrorEventArgs(Exception exception, int columnIndex, int rowIndex, DataGridViewDataErrorContexts context) : base(columnIndex, rowIndex) { Debug.Assert(rowIndex > -1); this.exception = exception; this.context = context; } /// public DataGridViewDataErrorContexts Context { get { return this.context; } } /// public Exception Exception { get { return this.exception; } } /// public bool ThrowException { get { return this.throwException; } set { if (value && this.exception == null) { throw new ArgumentException(SR.GetString(SR.DataGridView_CannotThrowNullException)); } this.throwException = 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.Diagnostics; using System.ComponentModel; ///public class DataGridViewDataErrorEventArgs : DataGridViewCellCancelEventArgs { private Exception exception; private bool throwException; private DataGridViewDataErrorContexts context; /// public DataGridViewDataErrorEventArgs(Exception exception, int columnIndex, int rowIndex, DataGridViewDataErrorContexts context) : base(columnIndex, rowIndex) { Debug.Assert(rowIndex > -1); this.exception = exception; this.context = context; } /// public DataGridViewDataErrorContexts Context { get { return this.context; } } /// public Exception Exception { get { return this.exception; } } /// public bool ThrowException { get { return this.throwException; } set { if (value && this.exception == null) { throw new ArgumentException(SR.GetString(SR.DataGridView_CannotThrowNullException)); } this.throwException = 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
- Configuration.cs
- DictionaryBase.cs
- IndentTextWriter.cs
- XpsFilter.cs
- IIS7UserPrincipal.cs
- LicenseManager.cs
- StorageInfo.cs
- RightsManagementPermission.cs
- PnrpPermission.cs
- itemelement.cs
- FreeFormDesigner.cs
- WindowsFormsLinkLabel.cs
- ParameterCollection.cs
- PropertyTabAttribute.cs
- MenuCommands.cs
- InputProcessorProfilesLoader.cs
- SurrogateSelector.cs
- FormsAuthentication.cs
- AnnotationResourceCollection.cs
- JoinElimination.cs
- FixedSOMImage.cs
- FtpRequestCacheValidator.cs
- LookupBindingPropertiesAttribute.cs
- PageAsyncTask.cs
- BindableTemplateBuilder.cs
- BufferedMessageWriter.cs
- CompositeCollectionView.cs
- CodeIndexerExpression.cs
- PageRanges.cs
- BooleanFacetDescriptionElement.cs
- DataContractSerializerOperationBehavior.cs
- ActiveXHost.cs
- ExcludeFromCodeCoverageAttribute.cs
- MultiView.cs
- Function.cs
- Int64Animation.cs
- StringConcat.cs
- PenLineJoinValidation.cs
- SizeAnimationUsingKeyFrames.cs
- ExtensionQuery.cs
- GiveFeedbackEvent.cs
- ReadOnlyActivityGlyph.cs
- IgnoreSectionHandler.cs
- TypeDescriptionProvider.cs
- Floater.cs
- Schema.cs
- MsmqTransportSecurityElement.cs
- XmlDocumentSerializer.cs
- OutputCacheSettingsSection.cs
- ExecutedRoutedEventArgs.cs
- ComponentGlyph.cs
- RectAnimationBase.cs
- ControlParameter.cs
- PasswordRecoveryDesigner.cs
- TextChange.cs
- ComponentEditorForm.cs
- SessionParameter.cs
- SqlCachedBuffer.cs
- HtmlInputFile.cs
- QilUnary.cs
- TreeViewTemplateSelector.cs
- ResXFileRef.cs
- XmlSchemaAnnotation.cs
- StaticSiteMapProvider.cs
- SoapTypeAttribute.cs
- ContentValidator.cs
- PairComparer.cs
- TransformGroup.cs
- CodeAttachEventStatement.cs
- XPathScanner.cs
- PopupRootAutomationPeer.cs
- TextRangeProviderWrapper.cs
- DesignTimeTemplateParser.cs
- TransformPattern.cs
- SourceChangedEventArgs.cs
- DebugViewWriter.cs
- RangeValueProviderWrapper.cs
- DataConnectionHelper.cs
- SemanticValue.cs
- DependencyPropertyAttribute.cs
- MenuAdapter.cs
- SecurityTokenSpecification.cs
- BitmapPalette.cs
- EndEvent.cs
- XmlChildNodes.cs
- DifferencingCollection.cs
- NonClientArea.cs
- InstanceCreationEditor.cs
- InputReportEventArgs.cs
- RuntimeConfigLKG.cs
- SoapSchemaImporter.cs
- PrinterResolution.cs
- ContextMenu.cs
- UdpTransportSettings.cs
- Transform.cs
- XmlReader.cs
- figurelengthconverter.cs
- Point4D.cs
- Crc32.cs
- AncillaryOps.cs