Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TrustManager.cs
- SettingsPropertyValueCollection.cs
- MailAddressParser.cs
- TreeNodeStyleCollection.cs
- PageParser.cs
- NumericExpr.cs
- Calendar.cs
- AdobeCFFWrapper.cs
- CharacterMetrics.cs
- DragEventArgs.cs
- FixedTextSelectionProcessor.cs
- ExecutionContext.cs
- Unit.cs
- PersonalizationStateInfoCollection.cs
- AssemblyNameUtility.cs
- SqlProviderUtilities.cs
- HtmlShim.cs
- PingOptions.cs
- ColumnReorderedEventArgs.cs
- CompiledQueryCacheEntry.cs
- RectConverter.cs
- XmlDocumentFragment.cs
- Stackframe.cs
- List.cs
- DataGridViewRowDividerDoubleClickEventArgs.cs
- ActivationServices.cs
- UpDownBase.cs
- FormsAuthenticationUserCollection.cs
- SchemaEntity.cs
- QualificationDataItem.cs
- DoubleLink.cs
- XmlEntity.cs
- CqlLexer.cs
- MenuItem.cs
- CachingParameterInspector.cs
- AsyncResult.cs
- LinearGradientBrush.cs
- IdnMapping.cs
- DirectoryObjectSecurity.cs
- Drawing.cs
- exports.cs
- MenuItemAutomationPeer.cs
- FixedHyperLink.cs
- TextRenderingModeValidation.cs
- FileIOPermission.cs
- ManifestResourceInfo.cs
- FileChangesMonitor.cs
- AutomationEvent.cs
- EmissiveMaterial.cs
- WebPartDeleteVerb.cs
- GridViewRowCollection.cs
- DbConnectionFactory.cs
- DragDropManager.cs
- EventMetadata.cs
- OperatingSystemVersionCheck.cs
- ChildDocumentBlock.cs
- ObjectListTitleAttribute.cs
- DeferredSelectedIndexReference.cs
- EndpointReference.cs
- SqlClientWrapperSmiStream.cs
- Invariant.cs
- SByteConverter.cs
- HttpModulesSection.cs
- DbDataSourceEnumerator.cs
- OdbcConnectionStringbuilder.cs
- JsonQNameDataContract.cs
- DBConnectionString.cs
- NotConverter.cs
- CodeTypeDelegate.cs
- MasterPageBuildProvider.cs
- CollectionViewGroup.cs
- FixedSOMTable.cs
- _TimerThread.cs
- TaskCanceledException.cs
- FrameworkContentElement.cs
- TextChangedEventArgs.cs
- ConfigurationConverterBase.cs
- ItemsChangedEventArgs.cs
- ColorContextHelper.cs
- ParentQuery.cs
- Contracts.cs
- MarkupCompilePass1.cs
- xsdvalidator.cs
- SystemWebCachingSectionGroup.cs
- HttpFileCollection.cs
- ZipIOLocalFileHeader.cs
- Delegate.cs
- DescendentsWalkerBase.cs
- TdsParserStateObject.cs
- DataServiceCollectionOfT.cs
- EpmHelper.cs
- HttpCookie.cs
- GroupBox.cs
- StringValidatorAttribute.cs
- Control.cs
- _HTTPDateParse.cs
- UnionExpr.cs
- HttpServerUtilityWrapper.cs
- HttpListenerRequest.cs
- CachedCompositeFamily.cs