Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / 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; } } }
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- HttpHeaderCollection.cs
- ObjectSpanRewriter.cs
- MailMessageEventArgs.cs
- ActivityDesigner.cs
- SerializationAttributes.cs
- SizeAnimationUsingKeyFrames.cs
- DataGridViewRowsRemovedEventArgs.cs
- SerializationEventsCache.cs
- PriorityRange.cs
- InlinedAggregationOperatorEnumerator.cs
- HandlerBase.cs
- AsyncOperationManager.cs
- InternalPermissions.cs
- SynchronizedDispatch.cs
- Panel.cs
- BitmapScalingModeValidation.cs
- QilCloneVisitor.cs
- PrintPreviewDialog.cs
- DateBoldEvent.cs
- QilReference.cs
- CmsUtils.cs
- ReferenceService.cs
- SrgsRuleRef.cs
- ProgressBarHighlightConverter.cs
- SupportsEventValidationAttribute.cs
- RecognizerBase.cs
- SoapFault.cs
- ProfileInfo.cs
- FormViewModeEventArgs.cs
- TextTabProperties.cs
- SQLMoneyStorage.cs
- QilChoice.cs
- TagElement.cs
- MsmqBindingBase.cs
- sqlser.cs
- ParagraphResult.cs
- ExpressionVisitorHelpers.cs
- SelectedCellsCollection.cs
- _Events.cs
- EntityTypeEmitter.cs
- BasicViewGenerator.cs
- TimeSpanValidator.cs
- DictionaryEntry.cs
- PropertyValueChangedEvent.cs
- ByteFacetDescriptionElement.cs
- RegexWorker.cs
- SmiGettersStream.cs
- DateTimeOffsetStorage.cs
- TemplateBindingExpression.cs
- TextElementCollectionHelper.cs
- ControlParameter.cs
- PnrpPermission.cs
- OracleBFile.cs
- SqlDataSourceQuery.cs
- TableParagraph.cs
- BaseValidator.cs
- MediaCommands.cs
- ProcessModuleDesigner.cs
- AsyncDataRequest.cs
- OlePropertyStructs.cs
- XmlnsDefinitionAttribute.cs
- MenuItemStyle.cs
- SoapExtension.cs
- FirewallWrapper.cs
- MultiBindingExpression.cs
- SamlDelegatingWriter.cs
- SRef.cs
- DecimalAnimation.cs
- RenderDataDrawingContext.cs
- EventManager.cs
- FontFaceLayoutInfo.cs
- PageSettings.cs
- HttpProfileBase.cs
- CodeTypeDeclarationCollection.cs
- EncodingStreamWrapper.cs
- FixedSOMContainer.cs
- StringComparer.cs
- Compiler.cs
- NullableBoolConverter.cs
- Rotation3D.cs
- CultureNotFoundException.cs
- LostFocusEventManager.cs
- SymmetricKey.cs
- WebConfigurationHostFileChange.cs
- ListViewUpdateEventArgs.cs
- SystemWebExtensionsSectionGroup.cs
- MetadataExporter.cs
- ActivityStateQuery.cs
- BitmapEffect.cs
- XmlArrayAttribute.cs
- TextRenderingModeValidation.cs
- PrtCap_Reader.cs
- UntrustedRecipientException.cs
- _Win32.cs
- WebMessageBodyStyleHelper.cs
- ModuleBuilder.cs
- ClientRolePrincipal.cs
- ButtonBaseAdapter.cs
- safelink.cs
- CursorInteropHelper.cs