Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / xsp / System / Web / UI / WebControls / DataControlFieldHeaderCell.cs / 1 / DataControlFieldHeaderCell.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.Globalization; using System.Security.Permissions; ////// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class DataControlFieldHeaderCell : DataControlFieldCell { public DataControlFieldHeaderCell(DataControlField containingField) : base(HtmlTextWriterTag.Th, containingField) { } ///Creates a special header cell that is contained within a DataControlField. ////// public virtual string AbbreviatedText { get { object x = ViewState["AbbrText"]; return((x == null) ? String.Empty : (string)x); } set { ViewState["AbbrText"] = value; } } ////// Sets the abbreviated text for a header cell. The abbreviated text /// is rendered with the HTML ABBR attribute. The ABBR attribute is important /// for screen readers since it allows them to read a shortened version of a header for each cell in the table. /// ////// public virtual TableHeaderScope Scope { get { object x = ViewState["Scope"]; return((x == null) ? TableHeaderScope.NotSet : (TableHeaderScope)x); } set { ViewState["Scope"] = value; } } ////// Represents the cells that the header applies to. Renders the HTML scope attribute. Possible values are from the TableHeaderScope enumeration: Column and Row. /// ////// protected override void AddAttributesToRender(HtmlTextWriter writer) { base.AddAttributesToRender(writer); TableHeaderScope scope = Scope; if (scope != TableHeaderScope.NotSet) { if (scope == TableHeaderScope.Column) { writer.AddAttribute(HtmlTextWriterAttribute.Scope, "col"); } else { writer.AddAttribute(HtmlTextWriterAttribute.Scope, "row"); } } String abbr = AbbreviatedText; if (!String.IsNullOrEmpty(abbr)) { writer.AddAttribute(HtmlTextWriterAttribute.Abbr, abbr); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //Adds header cell attributes to the list of attributes to render. ///// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.Globalization; using System.Security.Permissions; ////// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class DataControlFieldHeaderCell : DataControlFieldCell { public DataControlFieldHeaderCell(DataControlField containingField) : base(HtmlTextWriterTag.Th, containingField) { } ///Creates a special header cell that is contained within a DataControlField. ////// public virtual string AbbreviatedText { get { object x = ViewState["AbbrText"]; return((x == null) ? String.Empty : (string)x); } set { ViewState["AbbrText"] = value; } } ////// Sets the abbreviated text for a header cell. The abbreviated text /// is rendered with the HTML ABBR attribute. The ABBR attribute is important /// for screen readers since it allows them to read a shortened version of a header for each cell in the table. /// ////// public virtual TableHeaderScope Scope { get { object x = ViewState["Scope"]; return((x == null) ? TableHeaderScope.NotSet : (TableHeaderScope)x); } set { ViewState["Scope"] = value; } } ////// Represents the cells that the header applies to. Renders the HTML scope attribute. Possible values are from the TableHeaderScope enumeration: Column and Row. /// ////// protected override void AddAttributesToRender(HtmlTextWriter writer) { base.AddAttributesToRender(writer); TableHeaderScope scope = Scope; if (scope != TableHeaderScope.NotSet) { if (scope == TableHeaderScope.Column) { writer.AddAttribute(HtmlTextWriterAttribute.Scope, "col"); } else { writer.AddAttribute(HtmlTextWriterAttribute.Scope, "row"); } } String abbr = AbbreviatedText; if (!String.IsNullOrEmpty(abbr)) { writer.AddAttribute(HtmlTextWriterAttribute.Abbr, abbr); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.Adds header cell attributes to the list of attributes to render. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SessionStateModule.cs
- EmptyStringExpandableObjectConverter.cs
- XmlDataImplementation.cs
- DataGridViewTopRowAccessibleObject.cs
- _UriSyntax.cs
- SyndicationCategory.cs
- WebBodyFormatMessageProperty.cs
- HwndAppCommandInputProvider.cs
- Tracking.cs
- DataGridBoolColumn.cs
- AttributeUsageAttribute.cs
- Validator.cs
- WindowsGraphics.cs
- InteropTrackingRecord.cs
- ScriptReferenceBase.cs
- CheckedPointers.cs
- ModuleElement.cs
- MeshGeometry3D.cs
- ServiceNameElement.cs
- PointAnimationUsingPath.cs
- NullableLongMinMaxAggregationOperator.cs
- IpcPort.cs
- RightsManagementEncryptionTransform.cs
- X500Name.cs
- AppDomainProtocolHandler.cs
- SerializationEventsCache.cs
- CursorConverter.cs
- ToolStripGrip.cs
- IfJoinedCondition.cs
- CngKeyCreationParameters.cs
- Timeline.cs
- FastEncoder.cs
- ElementHost.cs
- TableCellCollection.cs
- PreviewKeyDownEventArgs.cs
- DataGridViewCellMouseEventArgs.cs
- BuildProviderCollection.cs
- AdornerDecorator.cs
- ProfilePropertySettings.cs
- MenuRendererClassic.cs
- ElementMarkupObject.cs
- KeyTimeConverter.cs
- PropertyTabChangedEvent.cs
- OdbcReferenceCollection.cs
- TriggerBase.cs
- CallbackBehaviorAttribute.cs
- Transform3DCollection.cs
- WebUtil.cs
- OleDbConnectionPoolGroupProviderInfo.cs
- HostingEnvironmentSection.cs
- HttpListenerContext.cs
- ImmutableCollection.cs
- DownloadProgressEventArgs.cs
- Resources.Designer.cs
- XPathNodeInfoAtom.cs
- ClientSettings.cs
- InfoCardTrace.cs
- SmtpClient.cs
- Metafile.cs
- BadImageFormatException.cs
- SafeTokenHandle.cs
- NonParentingControl.cs
- PathFigureCollectionValueSerializer.cs
- DataGridViewSelectedCellCollection.cs
- MemberRelationshipService.cs
- MonitoringDescriptionAttribute.cs
- DatePickerTextBox.cs
- Geometry.cs
- XhtmlBasicSelectionListAdapter.cs
- CancellationHandler.cs
- SkewTransform.cs
- AdornedElementPlaceholder.cs
- CompilerScopeManager.cs
- ClientData.cs
- Regex.cs
- XmlExtensionFunction.cs
- DependentList.cs
- Math.cs
- DataGridViewSelectedRowCollection.cs
- StateBag.cs
- SystemEvents.cs
- SHA1Cng.cs
- Properties.cs
- ZoomingMessageFilter.cs
- HtmlToClrEventProxy.cs
- ErrorsHelper.cs
- ComponentEditorForm.cs
- CodeIndexerExpression.cs
- ProfilePropertySettings.cs
- XamlReader.cs
- ColumnResizeAdorner.cs
- UnrecognizedPolicyAssertionElement.cs
- webproxy.cs
- FuncTypeConverter.cs
- DataGridViewCellStateChangedEventArgs.cs
- autovalidator.cs
- ExceptionUtil.cs
- Identifier.cs
- Schema.cs
- Types.cs