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
- SqlAliaser.cs
- PageContent.cs
- SHA1CryptoServiceProvider.cs
- ChannelReliableSession.cs
- SourceFilter.cs
- XmlNamespaceDeclarationsAttribute.cs
- ArrangedElementCollection.cs
- MetadataPropertyCollection.cs
- WebPartConnectionCollection.cs
- XamlWriter.cs
- cookiecollection.cs
- Object.cs
- PolicyImporterElementCollection.cs
- XmlTextReaderImplHelpers.cs
- SafeViewOfFileHandle.cs
- SystemIcons.cs
- XmlSignificantWhitespace.cs
- QuaternionValueSerializer.cs
- StrokeDescriptor.cs
- unsafenativemethodsother.cs
- Frame.cs
- URLIdentityPermission.cs
- IOException.cs
- DayRenderEvent.cs
- LoadedEvent.cs
- ToolStripItemEventArgs.cs
- SynchronousChannelMergeEnumerator.cs
- PathFigure.cs
- PlainXmlWriter.cs
- NativeMethods.cs
- DataBindingList.cs
- Literal.cs
- CodePageUtils.cs
- FrameAutomationPeer.cs
- HighlightOverlayGlyph.cs
- OdbcInfoMessageEvent.cs
- FontStyles.cs
- Font.cs
- BitmapDownload.cs
- InvalidFilterCriteriaException.cs
- JsonWriterDelegator.cs
- ControlFilterExpression.cs
- MultiAsyncResult.cs
- DataChangedEventManager.cs
- NativeMethods.cs
- SqlWebEventProvider.cs
- StringUtil.cs
- ConditionalExpression.cs
- OpenTypeLayout.cs
- SystemGatewayIPAddressInformation.cs
- columnmapfactory.cs
- CaseInsensitiveHashCodeProvider.cs
- ConstraintConverter.cs
- ResourceSetExpression.cs
- Size3D.cs
- CodeGotoStatement.cs
- ChameleonKey.cs
- CodeMethodInvokeExpression.cs
- SequentialWorkflowHeaderFooter.cs
- DateTimeOffsetAdapter.cs
- RegexCapture.cs
- IResourceProvider.cs
- XmlNodeList.cs
- WebPartConnectionsCloseVerb.cs
- AliasedSlot.cs
- DefaultValueConverter.cs
- TimeSpanOrInfiniteConverter.cs
- DataServiceOperationContext.cs
- UncommonField.cs
- IPCCacheManager.cs
- QuotedStringWriteStateInfo.cs
- Label.cs
- ImmutableCollection.cs
- Odbc32.cs
- BasicCellRelation.cs
- OdbcDataReader.cs
- PreservationFileWriter.cs
- StateInitializationDesigner.cs
- ToolStripTemplateNode.cs
- DesignerVerbCollection.cs
- HashMembershipCondition.cs
- MostlySingletonList.cs
- InstanceDescriptor.cs
- ExpressionPrefixAttribute.cs
- InvalidProgramException.cs
- WebPartZoneDesigner.cs
- ValueProviderWrapper.cs
- GorillaCodec.cs
- CodeStatementCollection.cs
- PositiveTimeSpanValidatorAttribute.cs
- DataGridViewCellConverter.cs
- ReadOnlyDictionary.cs
- TextEffect.cs
- ManagementNamedValueCollection.cs
- DragStartedEventArgs.cs
- ShaperBuffers.cs
- BitmapImage.cs
- OdbcConnectionHandle.cs
- MappingModelBuildProvider.cs
- UpdateRecord.cs