Code:
/ DotNET / DotNET / 8.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
- TextServicesCompartmentEventSink.cs
- LinkDescriptor.cs
- ToolStripSplitButton.cs
- AsymmetricKeyExchangeDeformatter.cs
- _ConnectionGroup.cs
- SqlTransaction.cs
- ViewStateChangedEventArgs.cs
- PrimaryKeyTypeConverter.cs
- PreparingEnlistment.cs
- MonthChangedEventArgs.cs
- Transform3D.cs
- DashStyle.cs
- CFStream.cs
- SymbolTable.cs
- KnownTypeHelper.cs
- WSSecurityPolicy11.cs
- RepeaterItemEventArgs.cs
- TraceProvider.cs
- Image.cs
- XamlPathDataSerializer.cs
- DoubleCollectionValueSerializer.cs
- CapabilitiesState.cs
- ReadOnlyDataSource.cs
- TrackingRecord.cs
- SQLInt16Storage.cs
- SqlCaseSimplifier.cs
- SqlClientMetaDataCollectionNames.cs
- SurrogateEncoder.cs
- SqlServices.cs
- InstanceCreationEditor.cs
- LoginName.cs
- ToolStripPanel.cs
- CircleHotSpot.cs
- TemplateColumn.cs
- DefaultValueTypeConverter.cs
- ByteStack.cs
- TraceXPathNavigator.cs
- PolyLineSegment.cs
- basemetadatamappingvisitor.cs
- LowerCaseStringConverter.cs
- CssClassPropertyAttribute.cs
- ScopeCompiler.cs
- DateTimeFormatInfoScanner.cs
- PeerCredentialElement.cs
- XmlUTF8TextWriter.cs
- ColumnClickEvent.cs
- EditorZoneBase.cs
- CancellationHandler.cs
- WorkflowShape.cs
- CssStyleCollection.cs
- RoutedUICommand.cs
- PrivateUnsafeNativeCompoundFileMethods.cs
- TextCharacters.cs
- NeutralResourcesLanguageAttribute.cs
- GregorianCalendarHelper.cs
- DateTimeFormatInfoScanner.cs
- CompileXomlTask.cs
- DataChangedEventManager.cs
- XmlLoader.cs
- ObjectDisposedException.cs
- WebMessageEncodingBindingElement.cs
- LineBreakRecord.cs
- control.ime.cs
- Bidi.cs
- WinEventWrap.cs
- WorkflowDebuggerSteppingAttribute.cs
- KeyBinding.cs
- FilterEventArgs.cs
- WpfPayload.cs
- Int16AnimationBase.cs
- WebPartConnection.cs
- AttributeEmitter.cs
- SkipQueryOptionExpression.cs
- ExclusiveHandleList.cs
- SamlDelegatingWriter.cs
- OracleConnectionString.cs
- OleDbErrorCollection.cs
- SecurityElement.cs
- DeclaredTypeValidator.cs
- HttpServerUtilityWrapper.cs
- SessionEndedEventArgs.cs
- SafeNativeMethodsMilCoreApi.cs
- SqlSelectStatement.cs
- MailWriter.cs
- DbCommandDefinition.cs
- XmlEncodedRawTextWriter.cs
- CodeCatchClause.cs
- TrackingServices.cs
- ReferenceEqualityComparer.cs
- ProtocolsConfigurationHandler.cs
- EdgeModeValidation.cs
- PropertyPathWorker.cs
- ClientSideProviderDescription.cs
- SQLResource.cs
- ErrorRuntimeConfig.cs
- processwaithandle.cs
- SID.cs
- SafeNativeMethodsMilCoreApi.cs
- PersistChildrenAttribute.cs
- SqlClientWrapperSmiStreamChars.cs