Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / WinForms / Managed / System / WinForms / DataGridViewRowErrorTextNeededEventArgs.cs / 1 / DataGridViewRowErrorTextNeededEventArgs.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
namespace System.Windows.Forms
{
using System;
using System.Diagnostics;
///
public class DataGridViewRowErrorTextNeededEventArgs : EventArgs
{
private int rowIndex;
private string errorText;
internal DataGridViewRowErrorTextNeededEventArgs(int rowIndex, string errorText)
{
Debug.Assert(rowIndex >= -1);
this.rowIndex = rowIndex;
this.errorText = errorText;
}
///
public string ErrorText
{
get
{
return this.errorText;
}
set
{
this.errorText = value;
}
}
///
public int RowIndex
{
get
{
return this.rowIndex;
}
}
}
}
// 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
- RegexMatch.cs
- MimeParameterWriter.cs
- MetadataArtifactLoaderCompositeResource.cs
- ZipIOZip64EndOfCentralDirectoryBlock.cs
- metadatamappinghashervisitor.hashsourcebuilder.cs
- WebPartChrome.cs
- RectangleF.cs
- SymLanguageType.cs
- AxisAngleRotation3D.cs
- MemberDomainMap.cs
- ValidationError.cs
- SmiSettersStream.cs
- QueryInterceptorAttribute.cs
- DocumentEventArgs.cs
- WindowsGraphics.cs
- XPathNode.cs
- XmlEventCache.cs
- DecimalAnimationUsingKeyFrames.cs
- DataGridViewRowsAddedEventArgs.cs
- HttpHandlerAction.cs
- AsymmetricSignatureFormatter.cs
- LinqDataSourceUpdateEventArgs.cs
- AuthenticateEventArgs.cs
- DataSourceXmlSerializationAttribute.cs
- BoundField.cs
- LogicalMethodInfo.cs
- ThemeableAttribute.cs
- XmlHelper.cs
- PageContentAsyncResult.cs
- OverflowException.cs
- ClientSponsor.cs
- ArgumentOutOfRangeException.cs
- DataGridViewRowCollection.cs
- InvalidOleVariantTypeException.cs
- BufferAllocator.cs
- GifBitmapDecoder.cs
- TextRangeEditLists.cs
- EndpointConfigContainer.cs
- PointHitTestParameters.cs
- WindowAutomationPeer.cs
- DataRowExtensions.cs
- RSAProtectedConfigurationProvider.cs
- InvokeMethodActivity.cs
- CodeTypeReferenceExpression.cs
- ReflectionPermission.cs
- InplaceBitmapMetadataWriter.cs
- AnnotationComponentManager.cs
- Parameter.cs
- SQLMembershipProvider.cs
- DesignerHelpers.cs
- FileDialogCustomPlace.cs
- DataGridRowHeaderAutomationPeer.cs
- Separator.cs
- SrgsRuleRef.cs
- DesignerActionMethodItem.cs
- HuffModule.cs
- EnumerableCollectionView.cs
- TrustManagerPromptUI.cs
- RenderDataDrawingContext.cs
- WebBrowser.cs
- KeyTimeConverter.cs
- ApplicationId.cs
- SQLDouble.cs
- ReadOnlyTernaryTree.cs
- LabelAutomationPeer.cs
- CompoundFileIOPermission.cs
- XDeferredAxisSource.cs
- IPAddressCollection.cs
- FormViewDeleteEventArgs.cs
- NTAccount.cs
- RenderDataDrawingContext.cs
- UnlockInstanceCommand.cs
- Point3DCollectionValueSerializer.cs
- CollectionChangeEventArgs.cs
- MetadataArtifactLoaderCompositeResource.cs
- RotateTransform.cs
- PreviewControlDesigner.cs
- DoubleUtil.cs
- RecordManager.cs
- ArrayWithOffset.cs
- CacheForPrimitiveTypes.cs
- StylusPointPropertyInfo.cs
- InputLanguageManager.cs
- SpeechEvent.cs
- Solver.cs
- QueryActivatableWorkflowsCommand.cs
- CaretElement.cs
- NavigationProperty.cs
- TypeValidationEventArgs.cs
- OdbcParameter.cs
- InvalidComObjectException.cs
- HuffCodec.cs
- WebPartMinimizeVerb.cs
- WindowsToolbarAsMenu.cs
- ParenthesizePropertyNameAttribute.cs
- GridItemCollection.cs
- CreateUserErrorEventArgs.cs
- TableCellCollection.cs
- SqlConnectionFactory.cs
- CodeDomDecompiler.cs