Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebControls / DataControlFieldHeaderCell.cs / 1305376 / DataControlFieldHeaderCell.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.Globalization; ////// 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; ////// 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
- ToolStrip.cs
- SiblingIterators.cs
- LogSwitch.cs
- MaterialGroup.cs
- GeneralTransform3D.cs
- DataGridViewSortCompareEventArgs.cs
- RelatedPropertyManager.cs
- SecondaryIndexDefinition.cs
- WindowsListViewItemCheckBox.cs
- SrgsDocument.cs
- GridViewCommandEventArgs.cs
- DrawingBrush.cs
- SafeLibraryHandle.cs
- BamlRecordWriter.cs
- ContextInformation.cs
- VisualStyleTypesAndProperties.cs
- UntypedNullExpression.cs
- MdiWindowListStrip.cs
- SingleTagSectionHandler.cs
- ComplexTypeEmitter.cs
- Opcode.cs
- PositiveTimeSpanValidator.cs
- ListBoxItem.cs
- Authorization.cs
- AssemblyBuilder.cs
- DbConnectionPoolOptions.cs
- AsyncResult.cs
- DateTimeFormat.cs
- HtmlShim.cs
- BitmapEncoder.cs
- UpdatePanelTrigger.cs
- TreeView.cs
- CreateSequenceResponse.cs
- HandleRef.cs
- ProgressChangedEventArgs.cs
- DocumentOrderComparer.cs
- ObjectQueryProvider.cs
- TimeSpanFormat.cs
- DynamicMetaObject.cs
- KeyValuePairs.cs
- Matrix3DStack.cs
- FormViewUpdatedEventArgs.cs
- PagedDataSource.cs
- EndGetFileNameFromUserRequest.cs
- ScriptingSectionGroup.cs
- Array.cs
- DecoderNLS.cs
- HTMLTextWriter.cs
- Message.cs
- XmlSerializerOperationGenerator.cs
- ConversionHelper.cs
- ComponentResourceKey.cs
- TypeDescriptionProvider.cs
- InvalidWMPVersionException.cs
- CodeNamespaceImport.cs
- IsolatedStoragePermission.cs
- SystemNetHelpers.cs
- CacheEntry.cs
- ActiveXHost.cs
- RightsDocument.cs
- WindowsButton.cs
- TabPanel.cs
- ObjectView.cs
- PerSessionInstanceContextProvider.cs
- DodSequenceMerge.cs
- DbProviderFactoriesConfigurationHandler.cs
- IgnoreFlushAndCloseStream.cs
- WebPartTracker.cs
- SmtpClient.cs
- MatrixConverter.cs
- TransactionManagerProxy.cs
- RegistrationServices.cs
- OuterGlowBitmapEffect.cs
- ADConnectionHelper.cs
- SimpleHandlerBuildProvider.cs
- GCHandleCookieTable.cs
- TimeoutConverter.cs
- ParameterCollection.cs
- Function.cs
- AmbientEnvironment.cs
- AuthenticationServiceManager.cs
- RemoteArgument.cs
- ObservableDictionary.cs
- EntityDataSourceConfigureObjectContextPanel.cs
- AddInProcess.cs
- ProgressBar.cs
- DoubleAnimationBase.cs
- BitmapFrameEncode.cs
- MobileControl.cs
- DataTrigger.cs
- ItemCollection.cs
- XmlAttributeAttribute.cs
- UnsafeNativeMethods.cs
- CultureTableRecord.cs
- UriTemplateEquivalenceComparer.cs
- followingquery.cs
- Formatter.cs
- CrossSiteScriptingValidation.cs
- InstanceContextManager.cs
- QuotedStringWriteStateInfo.cs