Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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
- ComponentSerializationService.cs
- ProcessProtocolHandler.cs
- DynamicMetaObject.cs
- NamedPipeConnectionPool.cs
- _BufferOffsetSize.cs
- _OSSOCK.cs
- DataTableReaderListener.cs
- InstanceDataCollectionCollection.cs
- ToolStripSplitStackLayout.cs
- WinCategoryAttribute.cs
- MessageBuilder.cs
- SourceFileInfo.cs
- IndexedGlyphRun.cs
- CqlWriter.cs
- HandledEventArgs.cs
- TrackingServices.cs
- SerialPort.cs
- InternalBufferOverflowException.cs
- PageTrueTypeFont.cs
- ZipArchive.cs
- CacheForPrimitiveTypes.cs
- LifetimeServices.cs
- PropertyStore.cs
- VisualStateManager.cs
- XmlReflectionImporter.cs
- unitconverter.cs
- DetailsViewDeleteEventArgs.cs
- ListBox.cs
- XmlParserContext.cs
- PeerApplication.cs
- ParamArrayAttribute.cs
- DeferredElementTreeState.cs
- MetadataCollection.cs
- OrderByQueryOptionExpression.cs
- SendingRequestEventArgs.cs
- TypedReference.cs
- Char.cs
- ManualResetEventSlim.cs
- StatusStrip.cs
- Converter.cs
- EdmEntityTypeAttribute.cs
- ModifierKeysValueSerializer.cs
- TemplateEditingFrame.cs
- RawTextInputReport.cs
- SerialStream.cs
- CategoryNameCollection.cs
- AssemblyBuilder.cs
- CacheMemory.cs
- MarginsConverter.cs
- RadioButtonFlatAdapter.cs
- AnnouncementClient.cs
- UniqueID.cs
- ProfileProvider.cs
- ObfuscationAttribute.cs
- WebPartsPersonalization.cs
- SQLDecimalStorage.cs
- CalendarAutomationPeer.cs
- ObjectManager.cs
- ToolboxItemCollection.cs
- SerialPinChanges.cs
- SQLResource.cs
- Queue.cs
- COAUTHIDENTITY.cs
- WindowsGraphics.cs
- SqlDataSourceView.cs
- StateWorkerRequest.cs
- CompositeScriptReference.cs
- JournalEntry.cs
- RemotingServices.cs
- Light.cs
- Calendar.cs
- EnumUnknown.cs
- BuildResult.cs
- ServicePointManager.cs
- BindingsCollection.cs
- PackageRelationshipCollection.cs
- NativeWindow.cs
- VersionConverter.cs
- ThrowHelper.cs
- ClientScriptManager.cs
- Padding.cs
- SqlXml.cs
- Light.cs
- UDPClient.cs
- Paragraph.cs
- GridProviderWrapper.cs
- TimeoutStream.cs
- HostExecutionContextManager.cs
- CollectionViewGroupInternal.cs
- WmlObjectListAdapter.cs
- ReceiveParametersContent.cs
- KnownIds.cs
- TableParaClient.cs
- InfoCardMetadataExchangeClient.cs
- _OverlappedAsyncResult.cs
- GACMembershipCondition.cs
- InputProviderSite.cs
- VerificationAttribute.cs
- Variable.cs
- ILGenerator.cs