Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / 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. // Copyright (c) Microsoft Corporation. All rights reserved.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
- ConfigurationElementCollection.cs
- DataQuery.cs
- _SingleItemRequestCache.cs
- RangeExpression.cs
- LogEntrySerializationException.cs
- ObjectItemAssemblyLoader.cs
- HttpRuntimeSection.cs
- PEFileReader.cs
- RequestQueryParser.cs
- ButtonRenderer.cs
- Context.cs
- TreeNode.cs
- XPathEmptyIterator.cs
- QueryExecutionOption.cs
- HttpModuleCollection.cs
- Query.cs
- SettingsAttributes.cs
- ThreadPoolTaskScheduler.cs
- XmlReturnWriter.cs
- FlowNode.cs
- AttachedPropertyBrowsableForChildrenAttribute.cs
- ToolBarDesigner.cs
- StreamInfo.cs
- LinqDataSourceSelectEventArgs.cs
- HttpDebugHandler.cs
- DBDataPermissionAttribute.cs
- SoapEnumAttribute.cs
- TransformGroup.cs
- RepeatBehavior.cs
- EntityCodeGenerator.cs
- DependencyPropertyKind.cs
- ApplicationSettingsBase.cs
- GradientStop.cs
- ListBox.cs
- AdornedElementPlaceholder.cs
- GroupedContextMenuStrip.cs
- FixedDocument.cs
- Error.cs
- QilTernary.cs
- MembershipUser.cs
- MsmqIntegrationSecurityElement.cs
- VectorConverter.cs
- FrameworkContentElement.cs
- StrongNameKeyPair.cs
- CommandEventArgs.cs
- SortAction.cs
- Collection.cs
- __ComObject.cs
- PlatformCulture.cs
- MaxMessageSizeStream.cs
- MultidimensionalArrayItemReference.cs
- CellTreeSimplifier.cs
- StringInfo.cs
- TransactionFilter.cs
- login.cs
- ResourceContainerWrapper.cs
- RouteItem.cs
- SiteMapHierarchicalDataSourceView.cs
- IdentitySection.cs
- BuildProvider.cs
- HttpListenerException.cs
- RefreshPropertiesAttribute.cs
- Clipboard.cs
- SamlAttributeStatement.cs
- SqlWriter.cs
- Int64.cs
- TextEditorCopyPaste.cs
- ImportContext.cs
- ImageSourceConverter.cs
- BitmapEffectDrawingContent.cs
- WinFormsComponentEditor.cs
- DesignerActionVerbItem.cs
- SqlProfileProvider.cs
- SerializationStore.cs
- SingleAnimationBase.cs
- QuaternionKeyFrameCollection.cs
- BitmapScalingModeValidation.cs
- CompositeTypefaceMetrics.cs
- QueryBranchOp.cs
- IdleTimeoutMonitor.cs
- DbDataReader.cs
- EntityDataSourceSelectedEventArgs.cs
- sqlstateclientmanager.cs
- WindowsGrip.cs
- DefaultSerializationProviderAttribute.cs
- EncoderParameter.cs
- WindowsListViewItem.cs
- DiagnosticTrace.cs
- DesignerProperties.cs
- LongCountAggregationOperator.cs
- XPathException.cs
- TextBoxRenderer.cs
- ParamArrayAttribute.cs
- odbcmetadatafactory.cs
- HwndAppCommandInputProvider.cs
- ForwardPositionQuery.cs
- ApplicationSettingsBase.cs
- MultiBinding.cs
- XmlCharacterData.cs
- Function.cs