Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / WebControls / GridViewRow.cs / 1 / GridViewRow.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 GridViewRow : TableRow, IDataItemContainer { private int _rowIndex; private int _dataItemIndex; private DataControlRowType _rowType; private DataControlRowState _rowState; private object _dataItem; ///Represents an individual row in the ///. /// public GridViewRow(int rowIndex, int dataItemIndex, DataControlRowType rowType, DataControlRowState rowState) { this._rowIndex = rowIndex; this._dataItemIndex = dataItemIndex; this._rowType = rowType; this._rowState = rowState; } ///Initializes a new instance of the ///class. /// public virtual object DataItem { get { return _dataItem; } set { _dataItem = value; } } ///Represents an item in the ///. /// public virtual int DataItemIndex { get { return _dataItemIndex; } } ///Indicates the data set index number. This property is read-only. ////// public virtual int RowIndex { get { return _rowIndex; } } ///Indicates the index of the row in the ///. This property is /// read-only. /// public virtual DataControlRowState RowState { get { return _rowState; } set { _rowState = value; } } ///Indicates the type of the row in the ///. /// public virtual DataControlRowType RowType { get { return _rowType; } set { _rowType = value; } } ///Indicates the type of the row in the ///. /// /// protected override bool OnBubbleEvent(object source, EventArgs e) { if (e is CommandEventArgs) { GridViewCommandEventArgs args = new GridViewCommandEventArgs(this, source, (CommandEventArgs)e); RaiseBubbleEvent(this, args); return true; } return false; } ////// /// object IDataItemContainer.DataItem { get { return DataItem; } } int IDataItemContainer.DataItemIndex { get { return DataItemIndex; } } int IDataItemContainer.DisplayIndex { get { return RowIndex; } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- XmlSchemaException.cs
- _TimerThread.cs
- ImageEditor.cs
- SqlDataReader.cs
- ParserOptions.cs
- CachedTypeface.cs
- PropertyMappingExceptionEventArgs.cs
- ResetableIterator.cs
- CryptoApi.cs
- InstanceDataCollectionCollection.cs
- XmlSchemaChoice.cs
- ParameterModifier.cs
- Scene3D.cs
- ProtectedConfigurationProviderCollection.cs
- Calendar.cs
- TableCell.cs
- MsmqInputChannelListener.cs
- ParameterCollection.cs
- TextContainerChangeEventArgs.cs
- DesignerActionGlyph.cs
- Label.cs
- MLangCodePageEncoding.cs
- Interop.cs
- ServiceModelEnhancedConfigurationElementCollection.cs
- RenderTargetBitmap.cs
- OleDbCommand.cs
- XmlFormatExtensionPointAttribute.cs
- VirtualizedCellInfoCollection.cs
- OdbcRowUpdatingEvent.cs
- Transform3D.cs
- XmlSchemaAll.cs
- OdbcConnection.cs
- WmlLinkAdapter.cs
- MenuItemStyleCollection.cs
- XmlSchemaComplexContentExtension.cs
- TypeSystem.cs
- RC2CryptoServiceProvider.cs
- ComponentResourceManager.cs
- SvcFileManager.cs
- ObjectNotFoundException.cs
- KeyValuePair.cs
- ClientBuildManager.cs
- VirtualPathUtility.cs
- TrackPoint.cs
- OSFeature.cs
- __Filters.cs
- Panel.cs
- FlowDocumentPage.cs
- BitmapEffectDrawingContent.cs
- IdentityModelDictionary.cs
- ManipulationLogic.cs
- DetailsViewRow.cs
- ToolStripCustomTypeDescriptor.cs
- Panel.cs
- ClientRuntimeConfig.cs
- AttributeCollection.cs
- KeyValuePairs.cs
- MemoryFailPoint.cs
- CodePageUtils.cs
- Transform.cs
- ActivityInterfaces.cs
- DiscreteKeyFrames.cs
- TextParaClient.cs
- SafeRegistryHandle.cs
- DescendentsWalkerBase.cs
- MetadataImporterQuotas.cs
- WindowsListViewItem.cs
- UserInitiatedNavigationPermission.cs
- VerificationAttribute.cs
- SetIterators.cs
- ControlEvent.cs
- DiscardableAttribute.cs
- Primitive.cs
- XmlIgnoreAttribute.cs
- GroupQuery.cs
- SpotLight.cs
- DataGridViewSortCompareEventArgs.cs
- RoutedEvent.cs
- TdsParserStaticMethods.cs
- RawStylusActions.cs
- Rfc4050KeyFormatter.cs
- BackStopAuthenticationModule.cs
- brushes.cs
- DataAdapter.cs
- CodeIdentifier.cs
- RectangleConverter.cs
- DragStartedEventArgs.cs
- ListSortDescription.cs
- ExtensionFile.cs
- ManualResetEvent.cs
- Size3D.cs
- FirstMatchCodeGroup.cs
- Native.cs
- InternalUserCancelledException.cs
- SmiContextFactory.cs
- BaseTransportHeaders.cs
- PropertyNames.cs
- DesignerCalendarAdapter.cs
- MetabaseServerConfig.cs
- WorkingDirectoryEditor.cs