Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / 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); } } } }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
- Vector3DIndependentAnimationStorage.cs
- DockAndAnchorLayout.cs
- ProviderSettingsCollection.cs
- EmptyQuery.cs
- IOThreadTimer.cs
- DataContractSerializerElement.cs
- AddressAlreadyInUseException.cs
- BuildProvider.cs
- InstanceDescriptor.cs
- OracleConnectionStringBuilder.cs
- Types.cs
- ArrayExtension.cs
- SystemUnicastIPAddressInformation.cs
- FileUtil.cs
- DataGridView.cs
- OpenFileDialog.cs
- PresentationAppDomainManager.cs
- DataGridColumnHeaderCollection.cs
- ImageCodecInfo.cs
- IODescriptionAttribute.cs
- RawStylusInputReport.cs
- OdbcDataReader.cs
- CheckBoxField.cs
- HTTPRemotingHandler.cs
- TransactionManager.cs
- StandardCommands.cs
- WriteFileContext.cs
- TaskFormBase.cs
- TextTreeRootTextBlock.cs
- SettingsProperty.cs
- XmlCharCheckingWriter.cs
- CommandEventArgs.cs
- TripleDES.cs
- HtmlLink.cs
- RawStylusInputReport.cs
- AdapterUtil.cs
- TreeView.cs
- XmlDataDocument.cs
- IgnorePropertiesAttribute.cs
- SubMenuStyleCollectionEditor.cs
- BuildProvidersCompiler.cs
- SoapAttributeAttribute.cs
- AutomationPatternInfo.cs
- SamlAssertionDirectKeyIdentifierClause.cs
- COAUTHINFO.cs
- LocalizationComments.cs
- SystemThemeKey.cs
- SQLResource.cs
- CharAnimationBase.cs
- VectorValueSerializer.cs
- EventProperty.cs
- QueryGenerator.cs
- RegisteredDisposeScript.cs
- ResolvePPIDRequest.cs
- DetailsViewUpdateEventArgs.cs
- Normalization.cs
- XmlSchemaParticle.cs
- SqlCacheDependencySection.cs
- TableStyle.cs
- ProcessHostConfigUtils.cs
- future.cs
- DataGridViewCellValidatingEventArgs.cs
- EncryptedReference.cs
- AmbientValueAttribute.cs
- BuildDependencySet.cs
- XmlCharType.cs
- DataGridViewRowPrePaintEventArgs.cs
- TextFormatter.cs
- CharEntityEncoderFallback.cs
- StateElementCollection.cs
- EdmProviderManifest.cs
- StringFreezingAttribute.cs
- DescendentsWalker.cs
- StylusShape.cs
- UrlRoutingModule.cs
- RayHitTestParameters.cs
- DeriveBytes.cs
- PerformanceCounterCategory.cs
- TextBlock.cs
- IconHelper.cs
- CustomError.cs
- SQLMembershipProvider.cs
- SHA512Managed.cs
- ComboBoxItem.cs
- RsaSecurityTokenAuthenticator.cs
- FormViewRow.cs
- SpoolingTask.cs
- Assert.cs
- RuleSettingsCollection.cs
- IRCollection.cs
- SetIterators.cs
- OutputCacheProfile.cs
- webeventbuffer.cs
- TextSpanModifier.cs
- HwndTarget.cs
- MissingSatelliteAssemblyException.cs
- ArraySegment.cs
- SHA256Managed.cs
- DataContractSet.cs
- Span.cs