Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / 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. ///// 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
- BaseCodeDomTreeGenerator.cs
- CollectionChangedEventManager.cs
- DispatcherTimer.cs
- DbConnectionInternal.cs
- DotNetATv1WindowsLogEntryDeserializer.cs
- TableCellCollection.cs
- JournalEntryListConverter.cs
- XamlSerializerUtil.cs
- ClientRuntimeConfig.cs
- XslCompiledTransform.cs
- SharedStatics.cs
- GridViewCommandEventArgs.cs
- PLINQETWProvider.cs
- JapaneseLunisolarCalendar.cs
- DataGridSortCommandEventArgs.cs
- ChangeProcessor.cs
- DispatcherObject.cs
- CipherData.cs
- ClientSettingsProvider.cs
- ClientSettingsSection.cs
- SingleStorage.cs
- ClientConfigurationHost.cs
- RuntimeConfigLKG.cs
- TearOffProxy.cs
- Suspend.cs
- DbTypeMap.cs
- SchemaTableColumn.cs
- ListMarkerSourceInfo.cs
- Privilege.cs
- ComboBoxAutomationPeer.cs
- MetafileHeaderWmf.cs
- RuleSettingsCollection.cs
- PassportIdentity.cs
- Environment.cs
- DbMetaDataFactory.cs
- COM2EnumConverter.cs
- BitmapInitialize.cs
- ValidationSummary.cs
- CurrentChangingEventManager.cs
- VirtualDirectoryMapping.cs
- WebResponse.cs
- Select.cs
- CollectionsUtil.cs
- XomlDesignerLoader.cs
- HttpCacheVaryByContentEncodings.cs
- DataGridPagingPage.cs
- TypeBinaryExpression.cs
- Helper.cs
- CustomLineCap.cs
- BamlResourceDeserializer.cs
- LogicalCallContext.cs
- WebPartActionVerb.cs
- CellLabel.cs
- TextBoxLine.cs
- SqlProfileProvider.cs
- ExpressionLink.cs
- ReadOnlyNameValueCollection.cs
- SystemWebCachingSectionGroup.cs
- BlurBitmapEffect.cs
- KeyedHashAlgorithm.cs
- SizeValueSerializer.cs
- IdleTimeoutMonitor.cs
- Automation.cs
- TextBox.cs
- HtmlTitle.cs
- WebBaseEventKeyComparer.cs
- NetSectionGroup.cs
- FlowPanelDesigner.cs
- TemplateInstanceAttribute.cs
- SelectionEditingBehavior.cs
- TextServicesCompartment.cs
- DesignerTransactionCloseEvent.cs
- OdbcRowUpdatingEvent.cs
- TextEditorSpelling.cs
- AudienceUriMode.cs
- BaseCodePageEncoding.cs
- MimeObjectFactory.cs
- MetadataHelper.cs
- FrameworkContentElementAutomationPeer.cs
- OdbcErrorCollection.cs
- RtfControlWordInfo.cs
- RotateTransform.cs
- Clipboard.cs
- DragEvent.cs
- XslTransform.cs
- DateTimeUtil.cs
- ProgramPublisher.cs
- ClickablePoint.cs
- MaterializeFromAtom.cs
- GradientBrush.cs
- ParagraphResult.cs
- Stacktrace.cs
- IndividualDeviceConfig.cs
- SafeUserTokenHandle.cs
- RequestStatusBarUpdateEventArgs.cs
- XmlSchemaValidator.cs
- CodeSnippetCompileUnit.cs
- MembershipSection.cs
- ItemContainerGenerator.cs
- WebMessageEncodingElement.cs