Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / DataGridViewDataErrorEventArgs.cs / 1305376 / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- KeyPullup.cs
- WorkflowPageSetupDialog.cs
- RuleSetDialog.cs
- UnSafeCharBuffer.cs
- ObjectPersistData.cs
- CallContext.cs
- MediaSystem.cs
- SystemBrushes.cs
- Application.cs
- WebControlAdapter.cs
- CodeTryCatchFinallyStatement.cs
- TemplateComponentConnector.cs
- DataGridViewRowCollection.cs
- AuthenticationModuleElementCollection.cs
- WaitForChangedResult.cs
- FormatException.cs
- StyleSelector.cs
- BatchParser.cs
- ObjectSet.cs
- XmlHelper.cs
- Parser.cs
- RsaSecurityTokenAuthenticator.cs
- ClientApiGenerator.cs
- UnsafeNativeMethods.cs
- ValueQuery.cs
- unsafenativemethodsother.cs
- PathParser.cs
- EmptyQuery.cs
- IIS7ConfigurationLoader.cs
- NamespaceList.cs
- XPathSelfQuery.cs
- Vector3DAnimationBase.cs
- SimpleWorkerRequest.cs
- NCryptSafeHandles.cs
- CurrencyManager.cs
- SqlErrorCollection.cs
- MultiBinding.cs
- Setter.cs
- SMSvcHost.cs
- HorizontalAlignConverter.cs
- CompositeActivityDesigner.cs
- TextProperties.cs
- ComponentDispatcher.cs
- CodeConditionStatement.cs
- ScriptingRoleServiceSection.cs
- SystemWebExtensionsSectionGroup.cs
- PolyLineSegment.cs
- ErrorLog.cs
- DataGridViewRowPostPaintEventArgs.cs
- StorageModelBuildProvider.cs
- VScrollProperties.cs
- SignatureHelper.cs
- AutoGeneratedFieldProperties.cs
- EnumType.cs
- HostProtectionException.cs
- ObfuscationAttribute.cs
- SByteConverter.cs
- DataBoundControlHelper.cs
- SoapEnumAttribute.cs
- ToolboxComponentsCreatingEventArgs.cs
- Route.cs
- CultureInfoConverter.cs
- WebBrowserEvent.cs
- XmlSchemaAnnotation.cs
- FederatedMessageSecurityOverHttp.cs
- SpecularMaterial.cs
- RenameRuleObjectDialog.Designer.cs
- TouchPoint.cs
- Line.cs
- TypeElement.cs
- ComAwareEventInfo.cs
- BufferModeSettings.cs
- PropertyNames.cs
- ExpandCollapseProviderWrapper.cs
- HtmlHead.cs
- MeasureItemEvent.cs
- InvalidOperationException.cs
- MatchingStyle.cs
- BitmapData.cs
- linebase.cs
- BindingsCollection.cs
- AttributeCollection.cs
- TagPrefixInfo.cs
- ZipIOLocalFileBlock.cs
- UriTemplateHelpers.cs
- WorkflowMarkupSerializationException.cs
- _LocalDataStore.cs
- TextServicesCompartmentEventSink.cs
- RoleServiceManager.cs
- SpellCheck.cs
- XmlNavigatorStack.cs
- ConnectionProviderAttribute.cs
- ReadOnlyPermissionSet.cs
- ContentDisposition.cs
- NullReferenceException.cs
- SizeValueSerializer.cs
- SignatureResourcePool.cs
- UrlRoutingHandler.cs
- FixedFlowMap.cs
- TrackBarRenderer.cs