Code:
/ DotNET / DotNET / 8.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
- ResourcesChangeInfo.cs
- DataReceivedEventArgs.cs
- JoinGraph.cs
- Axis.cs
- ContainsRowNumberChecker.cs
- SecurityHeader.cs
- AxisAngleRotation3D.cs
- CollectionEditorDialog.cs
- CodeGenerator.cs
- BigInt.cs
- PropertyInformation.cs
- BinaryUtilClasses.cs
- ServiceDescription.cs
- OdbcTransaction.cs
- RequestStatusBarUpdateEventArgs.cs
- TreeNodeSelectionProcessor.cs
- Win32MouseDevice.cs
- WebPartDescriptionCollection.cs
- MobileUITypeEditor.cs
- Win32Exception.cs
- AssemblyResolver.cs
- PathSegment.cs
- XamlPathDataSerializer.cs
- XmlSchemaAttributeGroupRef.cs
- TrackingRecordPreFilter.cs
- SafeEventLogWriteHandle.cs
- XmlDataCollection.cs
- ListItem.cs
- DCSafeHandle.cs
- StringComparer.cs
- LabelDesigner.cs
- StringArrayConverter.cs
- linebase.cs
- ModuleElement.cs
- ThumbButtonInfo.cs
- XmlDocumentFragment.cs
- WebControlsSection.cs
- TransactionScope.cs
- LambdaSerializationException.cs
- LocalizeDesigner.cs
- DataGridColumnCollectionEditor.cs
- IgnoreFlushAndCloseStream.cs
- SimpleBitVector32.cs
- HttpHandlersSection.cs
- TransportContext.cs
- GZipStream.cs
- LinearKeyFrames.cs
- ResourceDescriptionAttribute.cs
- VectorAnimation.cs
- ObjectConverter.cs
- QuaternionValueSerializer.cs
- NameValueCollection.cs
- SweepDirectionValidation.cs
- MetadataAssemblyHelper.cs
- DataGridView.cs
- WpfSharedXamlSchemaContext.cs
- ProxyElement.cs
- StylusPlugInCollection.cs
- ReflectionHelper.cs
- TcpProcessProtocolHandler.cs
- DriveNotFoundException.cs
- _ConnectionGroup.cs
- SecurityState.cs
- HandlerBase.cs
- altserialization.cs
- ToolStripContentPanel.cs
- DirectionalLight.cs
- RoamingStoreFileUtility.cs
- OperationParameterInfo.cs
- WaveHeader.cs
- ComboBoxAutomationPeer.cs
- OrderPreservingPipeliningMergeHelper.cs
- HighlightComponent.cs
- EntityKey.cs
- RowParagraph.cs
- WebBrowserUriTypeConverter.cs
- TextFormatterHost.cs
- PeerNameRecord.cs
- ValueOfAction.cs
- NavigationExpr.cs
- GPPOINT.cs
- SelectionEditor.cs
- StyleXamlParser.cs
- ReaderOutput.cs
- GroupBoxAutomationPeer.cs
- DataKey.cs
- ZipPackage.cs
- DbExpressionBuilder.cs
- XPathNode.cs
- TextViewBase.cs
- DataColumnChangeEvent.cs
- WebPartDescriptionCollection.cs
- BitConverter.cs
- Rotation3DAnimation.cs
- AsymmetricKeyExchangeDeformatter.cs
- TreeView.cs
- Win32PrintDialog.cs
- UnorderedHashRepartitionStream.cs
- BackgroundWorker.cs
- DataServiceSaveChangesEventArgs.cs