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
- HtmlButton.cs
- PropertyGridEditorPart.cs
- StringExpressionSet.cs
- CodeGen.cs
- ListViewGroupConverter.cs
- EditorBrowsableAttribute.cs
- PersistenceTypeAttribute.cs
- RectangleHotSpot.cs
- DataGridCheckBoxColumn.cs
- ConstructorNeedsTagAttribute.cs
- TypedTableBaseExtensions.cs
- TableLayoutColumnStyleCollection.cs
- XPathAxisIterator.cs
- CodeIdentifiers.cs
- SecureStringHasher.cs
- CompoundFileReference.cs
- Rule.cs
- ClientUtils.cs
- WebHttpSecurityElement.cs
- ClosureBinding.cs
- ScriptBehaviorDescriptor.cs
- BigInt.cs
- WebContext.cs
- XmlSchemaChoice.cs
- HtmlAnchor.cs
- Variant.cs
- PartialCachingAttribute.cs
- DataServiceBuildProvider.cs
- WmlPhoneCallAdapter.cs
- SecurityPermission.cs
- BitmapDecoder.cs
- Rect3DValueSerializer.cs
- JavaScriptString.cs
- Wizard.cs
- EnumerableRowCollection.cs
- FixUp.cs
- ImageInfo.cs
- OutputCacheProfileCollection.cs
- QilScopedVisitor.cs
- LinkedResourceCollection.cs
- RectKeyFrameCollection.cs
- CompositeTypefaceMetrics.cs
- ServiceHttpHandlerFactory.cs
- Deflater.cs
- CodeDirectoryCompiler.cs
- SecurityContextTokenValidationException.cs
- Separator.cs
- WebConfigurationHostFileChange.cs
- AnchoredBlock.cs
- ListView.cs
- WsatConfiguration.cs
- IgnoreFileBuildProvider.cs
- IApplicationTrustManager.cs
- UntypedNullExpression.cs
- LinkConverter.cs
- DataSvcMapFile.cs
- RuntimeConfig.cs
- IpcClientChannel.cs
- MainMenu.cs
- CollectionViewGroupRoot.cs
- NaturalLanguageHyphenator.cs
- SchemaMerger.cs
- PublisherMembershipCondition.cs
- CanonicalXml.cs
- ReferencedCollectionType.cs
- BindableTemplateBuilder.cs
- ClosableStream.cs
- NullRuntimeConfig.cs
- FragmentQueryKB.cs
- EventLogEntryCollection.cs
- ObjectSerializerFactory.cs
- XamlToRtfParser.cs
- control.ime.cs
- TextFormatter.cs
- IgnoreDataMemberAttribute.cs
- BorderGapMaskConverter.cs
- Buffer.cs
- OleDbWrapper.cs
- CheckBox.cs
- SplitterPanelDesigner.cs
- RC2CryptoServiceProvider.cs
- TaskHelper.cs
- RegexMatchCollection.cs
- ZipIOBlockManager.cs
- TypeLibraryHelper.cs
- HostingPreferredMapPath.cs
- DbException.cs
- OneWayChannelFactory.cs
- MostlySingletonList.cs
- WorkflowPersistenceContext.cs
- ScrollChrome.cs
- SecurityTokenSerializer.cs
- GACMembershipCondition.cs
- CompositeFontInfo.cs
- WindowsTokenRoleProvider.cs
- MetaTableHelper.cs
- XmlTypeAttribute.cs
- Pkcs7Signer.cs
- SoapAttributes.cs
- BinaryObjectInfo.cs