Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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
- CompiledELinqQueryState.cs
- AssemblyCache.cs
- ReadOnlyCollectionBase.cs
- FullTextState.cs
- LineProperties.cs
- ParameterBuilder.cs
- SafeNativeMethods.cs
- HttpAsyncResult.cs
- CompiledIdentityConstraint.cs
- ViewgenContext.cs
- InkCanvasSelectionAdorner.cs
- dsa.cs
- EnumUnknown.cs
- RolePrincipal.cs
- WindowsRegion.cs
- StreamResourceInfo.cs
- SparseMemoryStream.cs
- OraclePermissionAttribute.cs
- Listbox.cs
- WindowsMenu.cs
- PathSegment.cs
- RpcResponse.cs
- BufferedGraphicsContext.cs
- X509Certificate2Collection.cs
- DecimalConverter.cs
- WebResponse.cs
- ZipIOExtraFieldElement.cs
- DataConnectionHelper.cs
- TextDocumentView.cs
- DebugView.cs
- WhitespaceRuleLookup.cs
- OverlappedContext.cs
- Pen.cs
- TransactionOptions.cs
- ActivityDesignerLayoutSerializers.cs
- FixedFindEngine.cs
- EmbeddedMailObjectsCollection.cs
- ButtonChrome.cs
- RawStylusInput.cs
- XmlSchemaSimpleType.cs
- BCLDebug.cs
- BoolExpressionVisitors.cs
- PtsHost.cs
- InheritedPropertyChangedEventArgs.cs
- NamedObject.cs
- DataGridViewSelectedColumnCollection.cs
- HierarchicalDataSourceControl.cs
- CrossSiteScriptingValidation.cs
- EntityDataSourceDataSelectionPanel.cs
- BufferAllocator.cs
- bidPrivateBase.cs
- XmlSchemaType.cs
- WebPartZone.cs
- ClientSettingsProvider.cs
- SessionPageStateSection.cs
- PatternMatchRules.cs
- CodeDomConfigurationHandler.cs
- ProxyHwnd.cs
- RequestNavigateEventArgs.cs
- GraphicsPath.cs
- __ConsoleStream.cs
- TextSyndicationContent.cs
- XPathNodeHelper.cs
- GeometryConverter.cs
- DotAtomReader.cs
- PackWebRequestFactory.cs
- GridViewDeleteEventArgs.cs
- TextBlockAutomationPeer.cs
- ResourceAttributes.cs
- RoutedEventHandlerInfo.cs
- ParameterElementCollection.cs
- XmlDataImplementation.cs
- MimeTextImporter.cs
- RangeValuePattern.cs
- CacheManager.cs
- TableItemPattern.cs
- Sentence.cs
- CodeNamespace.cs
- FileClassifier.cs
- DbProviderManifest.cs
- WebRequestModulesSection.cs
- BitmapEffectDrawingContent.cs
- NativeMethods.cs
- HttpHeaderCollection.cs
- ReadOnlyCollection.cs
- SafeLocalMemHandle.cs
- Subtree.cs
- WebPartConnectionsEventArgs.cs
- SoapSchemaExporter.cs
- OracleInfoMessageEventArgs.cs
- ISFTagAndGuidCache.cs
- sitestring.cs
- DesignerProperties.cs
- CanonicalizationDriver.cs
- NonClientArea.cs
- DefaultWorkflowTransactionService.cs
- WmlLiteralTextAdapter.cs
- PrefixHandle.cs
- HwndProxyElementProvider.cs
- GZipStream.cs