Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / WebControls / DetailsViewRow.cs / 1 / DetailsViewRow.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 DetailsViewRow : TableRow { private int _rowIndex; private DataControlRowType _rowType; private DataControlRowState _rowState; ///Represents an individual row in the ///. /// public DetailsViewRow(int rowIndex, DataControlRowType rowType, DataControlRowState rowState) { this._rowIndex = rowIndex; this._rowType = rowType; this._rowState = rowState; } ///Initializes a new instance of the ///class. /// public virtual int RowIndex { get { return _rowIndex; } } ///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) { DetailsViewCommandEventArgs args = new DetailsViewCommandEventArgs(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
- ClassValidator.cs
- PathSegment.cs
- SystemWebCachingSectionGroup.cs
- NamedPipeTransportSecurity.cs
- XmlNullResolver.cs
- ColorConvertedBitmap.cs
- XmlReflectionImporter.cs
- SqlConnectionHelper.cs
- WebPartMinimizeVerb.cs
- AnimationClockResource.cs
- BaseTemplateCodeDomTreeGenerator.cs
- CodeMethodInvokeExpression.cs
- SoapIgnoreAttribute.cs
- ZipIOCentralDirectoryFileHeader.cs
- Transform3DGroup.cs
- SqlDataSourceAdvancedOptionsForm.cs
- BamlBinaryReader.cs
- ELinqQueryState.cs
- XamlTemplateSerializer.cs
- HtmlSelect.cs
- LogManagementAsyncResult.cs
- RetrieveVirtualItemEventArgs.cs
- TextChange.cs
- EventProperty.cs
- EventData.cs
- SectionRecord.cs
- CreateUserWizardStep.cs
- Registry.cs
- CodeTypeParameterCollection.cs
- AtomContentProperty.cs
- RemoteWebConfigurationHostServer.cs
- SQLByteStorage.cs
- QilBinary.cs
- ExpressionWriter.cs
- Span.cs
- RepeatButton.cs
- ProcessManager.cs
- X509Certificate2Collection.cs
- WindowsStartMenu.cs
- RootProfilePropertySettingsCollection.cs
- StatusBarPanel.cs
- AddInDeploymentState.cs
- UniqueEventHelper.cs
- FrameworkName.cs
- AdministrationHelpers.cs
- BindingExpressionUncommonField.cs
- GiveFeedbackEventArgs.cs
- Point.cs
- AttributeInfo.cs
- CategoryNameCollection.cs
- AdRotator.cs
- HMACSHA512.cs
- EntityAdapter.cs
- ConfigurationStrings.cs
- StreamGeometryContext.cs
- XmlNodeChangedEventArgs.cs
- ToolStripGrip.cs
- CellParagraph.cs
- HtmlShim.cs
- InputScope.cs
- EndpointAddressMessageFilter.cs
- ModifyActivitiesPropertyDescriptor.cs
- BamlStream.cs
- SmiEventStream.cs
- MetadataArtifactLoaderFile.cs
- DesignerHelpers.cs
- SlotInfo.cs
- Completion.cs
- ReadOnlyHierarchicalDataSource.cs
- ClientProtocol.cs
- SQLChars.cs
- IntersectQueryOperator.cs
- CollectionCodeDomSerializer.cs
- WriteLine.cs
- ColorConverter.cs
- ToolStripGrip.cs
- DataViewListener.cs
- CodeCommentStatementCollection.cs
- PropertyItem.cs
- PathFigure.cs
- TrackingWorkflowEventArgs.cs
- BrowserTree.cs
- documentation.cs
- ToolStripArrowRenderEventArgs.cs
- UTF8Encoding.cs
- FileVersionInfo.cs
- KeyValueInternalCollection.cs
- NetworkCredential.cs
- TabPanel.cs
- RegexCharClass.cs
- ExpressionBinding.cs
- RadioButton.cs
- SoapSchemaExporter.cs
- AppSettingsSection.cs
- _NestedSingleAsyncResult.cs
- ClientSettingsProvider.cs
- DataControlField.cs
- ConnectionStringSettingsCollection.cs
- SystemIPv6InterfaceProperties.cs
- DataSourceBooleanViewSchemaConverter.cs