Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebControls / DetailsViewRow.cs / 1305376 / DetailsViewRow.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.ComponentModel; ////// public class DetailsViewRow : TableRow { private int _rowIndex; private DataControlRowType _rowType; private DataControlRowState _rowState; ///Represents an individual row in the ///. /// public DetailsViewRow(int rowIndex, DataControlRowType rowType, DataControlRowState rowState) { this._rowIndex = rowIndex; this._rowType = rowType; this._rowState = rowState; } ///Initializes a new instance of the ///class. /// public virtual int RowIndex { get { return _rowIndex; } } ///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) { DetailsViewCommandEventArgs args = new DetailsViewCommandEventArgs(source, (CommandEventArgs)e); RaiseBubbleEvent(this, args); return true; } return false; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- WebBrowserEvent.cs
- BackgroundWorker.cs
- DateTimeOffsetConverter.cs
- SyndicationPerson.cs
- RegionData.cs
- SQLBytes.cs
- _DynamicWinsockMethods.cs
- WebPartManagerInternals.cs
- EncryptedData.cs
- TemplateKeyConverter.cs
- ScrollableControlDesigner.cs
- PersonalizationState.cs
- DefaultCommandConverter.cs
- MultiSelectRootGridEntry.cs
- MonikerUtility.cs
- XmlEnumAttribute.cs
- SqlDataSourceSelectingEventArgs.cs
- SpeechSeg.cs
- ResourceType.cs
- peersecurityelement.cs
- SrgsGrammar.cs
- DivideByZeroException.cs
- TransactionFlowBindingElement.cs
- DispatchWrapper.cs
- GetUserPreferenceRequest.cs
- MetafileHeaderWmf.cs
- EntityContainerEntitySet.cs
- MasterPageCodeDomTreeGenerator.cs
- ComPlusInstanceContextInitializer.cs
- SqlDeflator.cs
- TypeTypeConverter.cs
- SQLGuid.cs
- TextBoxLine.cs
- contentDescriptor.cs
- HexParser.cs
- TreeNode.cs
- DbProviderConfigurationHandler.cs
- TextReturnReader.cs
- NodeFunctions.cs
- InputGestureCollection.cs
- ClientOptions.cs
- _NegoState.cs
- DispatcherObject.cs
- SqlSelectStatement.cs
- ResourceReader.cs
- Translator.cs
- DataGridLengthConverter.cs
- ErrorHandler.cs
- DBConnectionString.cs
- WebService.cs
- CollectionEditor.cs
- DataGridLinkButton.cs
- JsonFormatGeneratorStatics.cs
- ReadOnlyDataSource.cs
- WebDisplayNameAttribute.cs
- TraceContextEventArgs.cs
- FileInfo.cs
- RSAProtectedConfigurationProvider.cs
- Panel.cs
- DataGridViewColumnDesignTimeVisibleAttribute.cs
- MinMaxParagraphWidth.cs
- RightsController.cs
- XmlArrayAttribute.cs
- VarRemapper.cs
- VectorAnimation.cs
- ControlAdapter.cs
- EntityProviderServices.cs
- HtmlEncodedRawTextWriter.cs
- RadioButtonDesigner.cs
- DES.cs
- CuspData.cs
- MatrixTransform3D.cs
- CurrencyWrapper.cs
- Simplifier.cs
- DocumentStream.cs
- ObjectDesignerDataSourceView.cs
- HealthMonitoringSectionHelper.cs
- DocumentPageViewAutomationPeer.cs
- BaseDataBoundControl.cs
- ConfigXmlAttribute.cs
- AsyncCompletedEventArgs.cs
- NameTable.cs
- PaginationProgressEventArgs.cs
- AlgoModule.cs
- TheQuery.cs
- ReferenceList.cs
- TdsValueSetter.cs
- MessageSecurityTokenVersion.cs
- LocatorPart.cs
- InlineObject.cs
- PageWrapper.cs
- UInt32.cs
- DataGridDefaultColumnWidthTypeConverter.cs
- SubstitutionList.cs
- VisualBrush.cs
- SecurityHeaderLayout.cs
- MetadataItem_Static.cs
- ReaderOutput.cs
- XmlNullResolver.cs
- VideoDrawing.cs