Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / 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; } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- VisualStyleRenderer.cs
- ListItemCollection.cs
- ResXFileRef.cs
- TextSchema.cs
- NetworkStream.cs
- SqlGatherConsumedAliases.cs
- DragEvent.cs
- CommandBinding.cs
- AssemblyCache.cs
- ContractListAdapter.cs
- QuestionEventArgs.cs
- QueryConverter.cs
- OdbcDataReader.cs
- SpeechSynthesizer.cs
- OuterGlowBitmapEffect.cs
- PerformanceCounter.cs
- __Filters.cs
- ListInitExpression.cs
- FigureParagraph.cs
- KeyGesture.cs
- RawAppCommandInputReport.cs
- CodePageEncoding.cs
- BamlLocalizerErrorNotifyEventArgs.cs
- MultiPropertyDescriptorGridEntry.cs
- MetadataSource.cs
- NextPreviousPagerField.cs
- TemplateControlParser.cs
- PassportAuthenticationEventArgs.cs
- _AutoWebProxyScriptEngine.cs
- LinkedResource.cs
- DESCryptoServiceProvider.cs
- BasicAsyncResult.cs
- StrongNameUtility.cs
- HtmlSelect.cs
- MatchNoneMessageFilter.cs
- GridViewDeleteEventArgs.cs
- ErrorInfoXmlDocument.cs
- RecordsAffectedEventArgs.cs
- StrokeNodeOperations.cs
- CompilationUtil.cs
- GroupBoxRenderer.cs
- safelink.cs
- XmlAnyAttributeAttribute.cs
- SimpleHandlerFactory.cs
- DataControlFieldHeaderCell.cs
- EntityDataSourceReferenceGroup.cs
- WindowsSysHeader.cs
- SplitterCancelEvent.cs
- TextTreeText.cs
- Filter.cs
- PrintDocument.cs
- DoubleStorage.cs
- ValuePattern.cs
- EditorPartCollection.cs
- ObjectDataSource.cs
- ThreadAbortException.cs
- GACMembershipCondition.cs
- AnnotationMap.cs
- TextPointerBase.cs
- UnsafeNativeMethodsPenimc.cs
- FillRuleValidation.cs
- AdornerLayer.cs
- SymbolMethod.cs
- ShaperBuffers.cs
- NativeMethodsOther.cs
- TabControlAutomationPeer.cs
- BitmapEffectGroup.cs
- ToolZone.cs
- VideoDrawing.cs
- NavigationFailedEventArgs.cs
- Oid.cs
- HtmlElement.cs
- XmlSchemaGroup.cs
- Trigger.cs
- ValidationPropertyAttribute.cs
- oledbconnectionstring.cs
- DataSet.cs
- ResponseStream.cs
- WhitespaceRuleReader.cs
- ToolStripDropDownButton.cs
- PtsHost.cs
- StrokeFIndices.cs
- OfTypeExpression.cs
- UpWmlMobileTextWriter.cs
- EnvironmentPermission.cs
- VersionedStreamOwner.cs
- StringResourceManager.cs
- HtmlValidatorAdapter.cs
- ReflectPropertyDescriptor.cs
- OleDbRowUpdatingEvent.cs
- AffineTransform3D.cs
- streamingZipPartStream.cs
- _emptywebproxy.cs
- documentation.cs
- Attributes.cs
- TrackingRecord.cs
- SoapParser.cs
- ParameterReplacerVisitor.cs
- TextServicesCompartment.cs
- DataTableMappingCollection.cs