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
- DataGridPageChangedEventArgs.cs
- WeakEventTable.cs
- ToolStripDropTargetManager.cs
- FtpCachePolicyElement.cs
- AsyncResult.cs
- MachineKeySection.cs
- SqlAggregateChecker.cs
- DiscoveryReferences.cs
- ContentElementAutomationPeer.cs
- LoadWorkflowByKeyAsyncResult.cs
- ContentDisposition.cs
- DbProviderFactories.cs
- DataGridViewAutoSizeColumnsModeEventArgs.cs
- ReceiveActivityDesigner.cs
- TextBoxAutoCompleteSourceConverter.cs
- CodeNamespace.cs
- BamlRecords.cs
- SecurityAlgorithmSuiteConverter.cs
- CompilerErrorCollection.cs
- BoundsDrawingContextWalker.cs
- NamedObject.cs
- figurelengthconverter.cs
- PackageDigitalSignatureManager.cs
- ThreadStaticAttribute.cs
- MailWebEventProvider.cs
- WhitespaceRuleReader.cs
- ByteKeyFrameCollection.cs
- CollectionViewProxy.cs
- ProfileBuildProvider.cs
- KeyboardNavigation.cs
- SchemaMapping.cs
- WindowPattern.cs
- FontUnit.cs
- WindowsTokenRoleProvider.cs
- TimelineGroup.cs
- ResourcePermissionBaseEntry.cs
- ToolStripDropDownClosedEventArgs.cs
- PreservationFileReader.cs
- NativeCppClassAttribute.cs
- TrackingProfile.cs
- TwoPhaseCommit.cs
- FilteredAttributeCollection.cs
- UInt64Storage.cs
- HtmlFormWrapper.cs
- Maps.cs
- ProxyAttribute.cs
- Matrix.cs
- DataGridViewEditingControlShowingEventArgs.cs
- SqlBooleanizer.cs
- CultureInfoConverter.cs
- DynamicILGenerator.cs
- FormatException.cs
- XLinq.cs
- GeometryHitTestParameters.cs
- BinaryFormatter.cs
- TdsValueSetter.cs
- FileDialogPermission.cs
- TextParaLineResult.cs
- TreeNodeClickEventArgs.cs
- DetailsViewUpdateEventArgs.cs
- RowType.cs
- TreeViewImageKeyConverter.cs
- Int32.cs
- WebEventTraceProvider.cs
- CodeTypeReferenceExpression.cs
- XmlQuerySequence.cs
- XmlNodeChangedEventArgs.cs
- SoapAttributeOverrides.cs
- CustomPopupPlacement.cs
- WrappedDispatcherException.cs
- ClientScriptManager.cs
- CollectionViewGroupRoot.cs
- TraceSection.cs
- SchemaImporter.cs
- TraceProvider.cs
- DoubleAnimationClockResource.cs
- ConnectionManagementSection.cs
- EntityObject.cs
- DBParameter.cs
- ListDictionaryInternal.cs
- OwnerDrawPropertyBag.cs
- XmlnsDictionary.cs
- RegionData.cs
- NullableFloatAverageAggregationOperator.cs
- TimeSpanMinutesConverter.cs
- Input.cs
- PerformanceCounterPermissionEntry.cs
- SafeBitVector32.cs
- SystemGatewayIPAddressInformation.cs
- StorageMappingItemCollection.cs
- GridViewRowCollection.cs
- ThreadStateException.cs
- PackWebResponse.cs
- CodeArrayIndexerExpression.cs
- CodeDomConfigurationHandler.cs
- DrawListViewColumnHeaderEventArgs.cs
- JapaneseLunisolarCalendar.cs
- FontDriver.cs
- SchemaNamespaceManager.cs
- CodeDelegateCreateExpression.cs