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
- WindowsTooltip.cs
- WebPartHeaderCloseVerb.cs
- ErrorWrapper.cs
- ZipIOCentralDirectoryFileHeader.cs
- PasswordDeriveBytes.cs
- QuotedStringFormatReader.cs
- EntryPointNotFoundException.cs
- X509ChainElement.cs
- ZipIOExtraFieldElement.cs
- ServiceManagerHandle.cs
- SamlSecurityTokenAuthenticator.cs
- HandleCollector.cs
- LinqDataSourceEditData.cs
- __FastResourceComparer.cs
- ExecutionContext.cs
- SerialReceived.cs
- StatusBarPanel.cs
- MeshGeometry3D.cs
- FixedSOMPageElement.cs
- DataGridViewCheckBoxCell.cs
- XPathPatternBuilder.cs
- ConfigXmlCDataSection.cs
- DocumentViewerHelper.cs
- EventSetter.cs
- RewritingValidator.cs
- RoleService.cs
- ExpressionsCollectionEditor.cs
- BitmapSource.cs
- SymbolEqualComparer.cs
- ManipulationVelocities.cs
- VirtualizingStackPanel.cs
- XmlSchemaElement.cs
- CheckBox.cs
- LockCookie.cs
- HwndHostAutomationPeer.cs
- BackoffTimeoutHelper.cs
- DataGridrowEditEndingEventArgs.cs
- FlowDocumentScrollViewer.cs
- PropertyMetadata.cs
- SymDocumentType.cs
- CatalogPart.cs
- recordstatefactory.cs
- RequiredFieldValidator.cs
- ToolStripSplitStackLayout.cs
- SqlCharStream.cs
- SQLDateTimeStorage.cs
- MILUtilities.cs
- SuppressMergeCheckAttribute.cs
- AvTraceFormat.cs
- wgx_commands.cs
- SimpleExpression.cs
- PerfCounterSection.cs
- FixedPageProcessor.cs
- Sql8ConformanceChecker.cs
- GcSettings.cs
- DataGridViewRowStateChangedEventArgs.cs
- CacheAxisQuery.cs
- ImmComposition.cs
- SettingsPropertyCollection.cs
- DesignerLoader.cs
- WebConfigurationHostFileChange.cs
- CompilerInfo.cs
- BinaryMessageFormatter.cs
- HttpListenerTimeoutManager.cs
- MatrixStack.cs
- EntityCommand.cs
- WebServiceAttribute.cs
- CommandHelpers.cs
- RestClientProxyHandler.cs
- ToolStripSplitStackLayout.cs
- DecimalConstantAttribute.cs
- dbdatarecord.cs
- XmlArrayAttribute.cs
- SectionInput.cs
- MouseEvent.cs
- BasicBrowserDialog.designer.cs
- XpsFontSubsetter.cs
- BadImageFormatException.cs
- EntityDataSource.cs
- XmlQueryStaticData.cs
- ParameterCollectionEditorForm.cs
- ErrorView.xaml.cs
- SimpleTypeResolver.cs
- FixedStringLookup.cs
- EntityPropertyMappingAttribute.cs
- DataGridViewIntLinkedList.cs
- TextChangedEventArgs.cs
- DbProviderFactoriesConfigurationHandler.cs
- WmlListAdapter.cs
- ParameterBuilder.cs
- Model3D.cs
- BufferedWebEventProvider.cs
- SoapClientProtocol.cs
- EntityConnectionStringBuilder.cs
- PrimitiveXmlSerializers.cs
- typedescriptorpermission.cs
- ToolStripOverflow.cs
- RightsManagementPermission.cs
- CalendarKeyboardHelper.cs
- CopyAction.cs