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
- NotifyParentPropertyAttribute.cs
- FixedDSBuilder.cs
- ComboBoxAutomationPeer.cs
- PageSetupDialog.cs
- PolyLineSegment.cs
- MediaCommands.cs
- WebPartEventArgs.cs
- CompilerGlobalScopeAttribute.cs
- Material.cs
- ApplicationDirectory.cs
- CookieProtection.cs
- ToolStripOverflow.cs
- DataMisalignedException.cs
- CaseInsensitiveHashCodeProvider.cs
- _FixedSizeReader.cs
- SqlXml.cs
- ModelItemCollectionImpl.cs
- ConfigXmlWhitespace.cs
- ElementAtQueryOperator.cs
- DetailsViewPagerRow.cs
- CachedFontFamily.cs
- ExpressionDumper.cs
- ClientSettingsStore.cs
- ReadOnlyActivityGlyph.cs
- FacetChecker.cs
- MapPathBasedVirtualPathProvider.cs
- BooleanStorage.cs
- ProbeDuplexAsyncResult.cs
- ValidationErrorCollection.cs
- HashFinalRequest.cs
- IsolatedStorage.cs
- XDeferredAxisSource.cs
- SafeCancelMibChangeNotify.cs
- DelegatingConfigHost.cs
- OpCellTreeNode.cs
- FtpWebRequest.cs
- SqlBinder.cs
- Literal.cs
- DataObjectSettingDataEventArgs.cs
- AdPostCacheSubstitution.cs
- TextPointer.cs
- ForEachAction.cs
- MarshalDirectiveException.cs
- MailFileEditor.cs
- PcmConverter.cs
- webbrowsersite.cs
- GetPageNumberCompletedEventArgs.cs
- Profiler.cs
- RemoveStoryboard.cs
- DesignerVerbCollection.cs
- WorkflowInstanceExtensionCollection.cs
- XPathNodeIterator.cs
- LinkArea.cs
- WebServiceMethodData.cs
- ListViewItem.cs
- FileDialog_Vista.cs
- UrlMappingCollection.cs
- QilExpression.cs
- ReadOnlyDataSourceView.cs
- SctClaimDictionary.cs
- IsolatedStorage.cs
- AuthenticationConfig.cs
- FragmentQuery.cs
- ColorConverter.cs
- WindowsMenu.cs
- PenThread.cs
- SweepDirectionValidation.cs
- ColorAnimation.cs
- WebBrowserUriTypeConverter.cs
- validationstate.cs
- ThicknessKeyFrameCollection.cs
- TimeEnumHelper.cs
- DocumentationServerProtocol.cs
- ReferencedCollectionType.cs
- X500Name.cs
- FullTrustAssembliesSection.cs
- BufferedReceiveManager.cs
- WebAdminConfigurationHelper.cs
- storepermission.cs
- HostProtectionPermission.cs
- ArrayElementGridEntry.cs
- Base64Stream.cs
- GeneralTransform.cs
- SmiSettersStream.cs
- DataGridViewButtonCell.cs
- BamlVersionHeader.cs
- DocumentOrderQuery.cs
- FileDialogCustomPlacesCollection.cs
- XsltContext.cs
- TraceUtils.cs
- SystemIcmpV6Statistics.cs
- TriggerCollection.cs
- StorageEndPropertyMapping.cs
- Wildcard.cs
- ArcSegment.cs
- DataColumnChangeEvent.cs
- ArgumentsParser.cs
- SQLInt32.cs
- AsyncPostBackTrigger.cs
- DecoderBestFitFallback.cs