Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / WebControls / FormViewRow.cs / 1 / FormViewRow.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.ComponentModel; using System.Security.Permissions; ////// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class FormViewRow : TableRow { private int _itemIndex; private DataControlRowType _rowType; private DataControlRowState _rowState; ///Represents an individual row in the ///. /// public FormViewRow(int itemIndex, DataControlRowType rowType, DataControlRowState rowState) { this._itemIndex = itemIndex; this._rowType = rowType; this._rowState = rowState; } ///Initializes a new instance of the ///class. /// public virtual int ItemIndex { get { return _itemIndex; } } ///Indicates the index of the item in the ///. This property is /// read-only. /// public virtual DataControlRowState RowState { get { return _rowState; } } ///Indicates the type of the row in the ///. /// public virtual DataControlRowType RowType { get { return _rowType; } } ///Indicates the type of the row in the ///. /// /// protected override bool OnBubbleEvent(object source, EventArgs e) { if (e is CommandEventArgs) { FormViewCommandEventArgs args = new FormViewCommandEventArgs(source, (CommandEventArgs)e); RaiseBubbleEvent(this, args); return true; } return false; } } } // 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
- ExecutionContext.cs
- InstanceHandle.cs
- CustomWebEventKey.cs
- SubclassTypeValidatorAttribute.cs
- TextTreeDeleteContentUndoUnit.cs
- SettingsPropertyCollection.cs
- DiagnosticsConfigurationHandler.cs
- ProvideValueServiceProvider.cs
- RoleManagerEventArgs.cs
- XmlBinaryReader.cs
- SqlConnectionPoolGroupProviderInfo.cs
- TextBlockAutomationPeer.cs
- WrapperEqualityComparer.cs
- FontFamilyValueSerializer.cs
- QueryContinueDragEvent.cs
- InternalEnumValidator.cs
- SqlDeflator.cs
- PKCS1MaskGenerationMethod.cs
- ModifierKeysValueSerializer.cs
- DelegatingTypeDescriptionProvider.cs
- DataGridViewHeaderCell.cs
- ADRoleFactoryConfiguration.cs
- ClientApiGenerator.cs
- ResXResourceReader.cs
- SystemIcmpV6Statistics.cs
- ASCIIEncoding.cs
- EventProxy.cs
- AccessDataSourceView.cs
- GeneratedCodeAttribute.cs
- CachedBitmap.cs
- DSASignatureFormatter.cs
- MailMessage.cs
- Win32Native.cs
- GorillaCodec.cs
- DesignerLoader.cs
- ResourceWriter.cs
- PropertyInfoSet.cs
- XmlEncoding.cs
- AssociatedControlConverter.cs
- OdbcCommandBuilder.cs
- EncodingInfo.cs
- MsmqHostedTransportConfiguration.cs
- ThreadExceptionEvent.cs
- WindowsTooltip.cs
- ToolStripEditorManager.cs
- XmlSchemaAny.cs
- AncillaryOps.cs
- Storyboard.cs
- ParallelTimeline.cs
- RelatedCurrencyManager.cs
- UnsafeNativeMethods.cs
- ConstructorBuilder.cs
- Query.cs
- EntityCommandCompilationException.cs
- AggregateException.cs
- ServiceProviders.cs
- CodeStatement.cs
- Animatable.cs
- DriveNotFoundException.cs
- HighlightVisual.cs
- TimeSpanValidatorAttribute.cs
- Rotation3D.cs
- entitydatasourceentitysetnameconverter.cs
- PersianCalendar.cs
- LayoutSettings.cs
- DataGridLinkButton.cs
- TypeConverterHelper.cs
- HttpConfigurationContext.cs
- StrokeNodeOperations2.cs
- SqlServer2KCompatibilityAnnotation.cs
- MobileListItemCollection.cs
- StreamGeometryContext.cs
- HybridDictionary.cs
- FormViewModeEventArgs.cs
- ObjectQuery_EntitySqlExtensions.cs
- Compress.cs
- ApplicationServiceHelper.cs
- TextBoxBase.cs
- ValidationHelper.cs
- BrowserDefinition.cs
- RectAnimationUsingKeyFrames.cs
- selecteditemcollection.cs
- WebRequest.cs
- UnsafeNativeMethods.cs
- UIElement.cs
- ThicknessKeyFrameCollection.cs
- XmlRawWriterWrapper.cs
- MenuItemStyle.cs
- MenuAutoFormat.cs
- TemplatePartAttribute.cs
- unitconverter.cs
- Vector3D.cs
- TabItemWrapperAutomationPeer.cs
- ThreadStaticAttribute.cs
- PasswordRecovery.cs
- SelectorItemAutomationPeer.cs
- Cursor.cs
- _FtpControlStream.cs
- CodeTypeDeclaration.cs
- ToolStripPanelRenderEventArgs.cs