Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / WebControls / FormViewRow.cs / 1 / FormViewRow.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 FormViewRow : TableRow { private int _itemIndex; private DataControlRowType _rowType; private DataControlRowState _rowState; ///Represents an individual row in the ///. /// public FormViewRow(int itemIndex, DataControlRowType rowType, DataControlRowState rowState) { this._itemIndex = itemIndex; this._rowType = rowType; this._rowState = rowState; } ///Initializes a new instance of the ///class. /// public virtual int ItemIndex { get { return _itemIndex; } } ///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) { FormViewCommandEventArgs args = new FormViewCommandEventArgs(source, (CommandEventArgs)e); RaiseBubbleEvent(this, args); return true; } return false; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ConfigXmlSignificantWhitespace.cs
- NumberFormatInfo.cs
- FunctionUpdateCommand.cs
- NullReferenceException.cs
- LinkLabelLinkClickedEvent.cs
- NeutralResourcesLanguageAttribute.cs
- MouseActionConverter.cs
- NamedPipeConnectionPool.cs
- RequestQueryParser.cs
- Journal.cs
- ScriptReferenceEventArgs.cs
- BaseInfoTable.cs
- FontStyles.cs
- WorkflowCompensationBehavior.cs
- SqlDataRecord.cs
- BasicBrowserDialog.designer.cs
- IPEndPoint.cs
- AddInSegmentDirectoryNotFoundException.cs
- WebReference.cs
- ApplicationServiceHelper.cs
- ArgumentException.cs
- VisualStyleTypesAndProperties.cs
- ListView.cs
- ButtonPopupAdapter.cs
- CheckBoxBaseAdapter.cs
- TemplateControl.cs
- View.cs
- ByteAnimationUsingKeyFrames.cs
- listitem.cs
- BookmarkScope.cs
- BufferModeSettings.cs
- RectKeyFrameCollection.cs
- DBConnection.cs
- ListControlDesigner.cs
- Win32Exception.cs
- _ConnectionGroup.cs
- StandardCommands.cs
- DefaultDiscoveryService.cs
- ElementHostAutomationPeer.cs
- RightsManagementProvider.cs
- OdbcException.cs
- AutomationIdentifier.cs
- InternalTypeHelper.cs
- XPathDocument.cs
- SemanticResultValue.cs
- ResXResourceSet.cs
- WCFServiceClientProxyGenerator.cs
- OperatorExpressions.cs
- AbandonedMutexException.cs
- mediaeventshelper.cs
- PerformanceCounterPermission.cs
- ExceptionRoutedEventArgs.cs
- TextEditorDragDrop.cs
- Processor.cs
- SmiSettersStream.cs
- CodeArrayCreateExpression.cs
- SequenceRangeCollection.cs
- AmbientLight.cs
- CompModSwitches.cs
- ObjectMemberMapping.cs
- EnumCodeDomSerializer.cs
- OleAutBinder.cs
- ConsoleKeyInfo.cs
- GetIndexBinder.cs
- CrossAppDomainChannel.cs
- RuleSettings.cs
- ScrollBar.cs
- SelectingProviderEventArgs.cs
- WebBrowserNavigatedEventHandler.cs
- BindingExpressionUncommonField.cs
- SimpleRecyclingCache.cs
- PropertyReferenceExtension.cs
- GroupQuery.cs
- IisTraceListener.cs
- ElapsedEventArgs.cs
- CompilerErrorCollection.cs
- SmiEventSink_DeferedProcessing.cs
- EventWaitHandleSecurity.cs
- GlyphShapingProperties.cs
- DataBoundControlAdapter.cs
- ExtendedProtectionPolicy.cs
- InputManager.cs
- PropertyInformation.cs
- XPathNodeInfoAtom.cs
- EntityRecordInfo.cs
- XmlSchemaSimpleContentExtension.cs
- MobileTextWriter.cs
- LZCodec.cs
- ReferenceEqualityComparer.cs
- ConfigDefinitionUpdates.cs
- DataObjectMethodAttribute.cs
- ControlCachePolicy.cs
- ELinqQueryState.cs
- WebPermission.cs
- DataGridViewRowCollection.cs
- RsaSecurityTokenParameters.cs
- DataGridTableCollection.cs
- ListViewSortEventArgs.cs
- RoutingChannelExtension.cs
- FunctionDescription.cs