Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / xsp / System / Web / UI / HtmlControls / HtmlTableCell.cs / 1 / HtmlTableCell.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
/*
* HtmlTableCell.cs
*
* Copyright (c) 2000 Microsoft Corporation
*/
namespace System.Web.UI.HtmlControls {
using System;
using System.Collections;
using System.ComponentModel;
using System.Globalization;
using System.Web;
using System.Web.UI;
using System.Security.Permissions;
///
///
/// The
/// class defines the properties, methods, and events for the HtmlTableCell control.
/// This class allows programmatic access on the server to individual HTML
/// <td> and <th> elements enclosed within an
///
/// control.
///
///
[ConstructorNeedsTag(true)]
[AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
[AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)]
public class HtmlTableCell : HtmlContainerControl {
///
///
public HtmlTableCell() : base("td") {
}
///
///
public HtmlTableCell(string tagName) : base(tagName) {
}
///
///
/// Gets or sets the horizontal alignment of content within an
/// control.
///
///
[
WebCategory("Layout"),
DefaultValue(""),
DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)
]
public string Align {
get {
string s = Attributes["align"];
return((s != null) ? s : String.Empty);
}
set {
Attributes["align"] = MapStringAttributeToString(value);
}
}
///
///
/// Gets or sets the background color of an
/// control.
///
///
[
WebCategory("Appearance"),
DefaultValue(""),
DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)
]
public string BgColor {
get {
string s = Attributes["bgcolor"];
return((s != null) ? s : String.Empty);
}
set {
Attributes["bgcolor"] = MapStringAttributeToString(value);
}
}
///
///
/// Gets or sets the border color of an
/// control.
///
///
[
WebCategory("Appearance"),
DefaultValue(""),
DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)
]
public string BorderColor {
get {
string s = Attributes["bordercolor"];
return((s != null) ? s : String.Empty);
}
set {
Attributes["bordercolor"] = MapStringAttributeToString(value);
}
}
/*
* Number of columns that this cell spans.
*/
///
///
/// Gets or sets the number of columns that the HtmlTableCell control spans.
///
///
[
WebCategory("Layout"),
DefaultValue(""),
DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)
]
public int ColSpan {
get {
string s = Attributes["colspan"];
return((s != null) ? Int32.Parse(s, CultureInfo.InvariantCulture) : -1);
}
set {
Attributes["colspan"] = MapIntegerAttributeToString(value);
}
}
///
///
/// Gets or sets the height, in pixels, of an
/// control.
///
///
[
WebCategory("Layout"),
DefaultValue(""),
DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)
]
public string Height {
get {
string s = Attributes["height"];
return((s != null) ? s : String.Empty);
}
set {
Attributes["height"] = MapStringAttributeToString(value);
}
}
/*
* Suppresses wrapping.
*/
///
///
/// Gets or sets a value indicating whether text within an
/// control
/// should be wrapped.
///
///
[
WebCategory("Behavior"),
DefaultValue(""),
DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden),
TypeConverter(typeof(MinimizableAttributeTypeConverter))
]
public bool NoWrap {
get {
string s = Attributes["nowrap"];
return((s != null) ? (s.Equals("nowrap")) : false);
}
set {
if (value)
Attributes["nowrap"] = "nowrap";
else
Attributes["nowrap"] = null;
}
}
/*
* Number of rows that this cell spans.
*/
///
///
/// Gets or sets the number of rows an control
/// spans.
///
///
[
WebCategory("Layout"),
DefaultValue(""),
DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)
]
public int RowSpan {
get {
string s = Attributes["rowspan"];
return((s != null) ? Int32.Parse(s, CultureInfo.InvariantCulture) : -1);
}
set {
Attributes["rowspan"] = MapIntegerAttributeToString(value);
}
}
///
///
/// Gets or sets the vertical alignment for text within an
/// control.
///
///
[
WebCategory("Layout"),
DefaultValue(""),
DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)
]
public string VAlign {
get {
string s = Attributes["valign"];
return((s != null) ? s : String.Empty);
}
set {
Attributes["valign"] = MapStringAttributeToString(value);
}
}
///
///
/// Gets or sets the width, in pixels, of an
/// control.
///
///
[
WebCategory("Layout"),
DefaultValue(""),
DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)
]
public string Width {
get {
string s = Attributes["width"];
return((s != null) ? s : String.Empty);
}
set {
Attributes["width"] = MapStringAttributeToString(value);
}
}
///
///
///
protected override void RenderEndTag(HtmlTextWriter writer) {
base.RenderEndTag(writer);
writer.WriteLine();
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
/*
* HtmlTableCell.cs
*
* Copyright (c) 2000 Microsoft Corporation
*/
namespace System.Web.UI.HtmlControls {
using System;
using System.Collections;
using System.ComponentModel;
using System.Globalization;
using System.Web;
using System.Web.UI;
using System.Security.Permissions;
///
///
/// The
/// class defines the properties, methods, and events for the HtmlTableCell control.
/// This class allows programmatic access on the server to individual HTML
/// <td> and <th> elements enclosed within an
///
/// control.
///
///
[ConstructorNeedsTag(true)]
[AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
[AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)]
public class HtmlTableCell : HtmlContainerControl {
///
///
public HtmlTableCell() : base("td") {
}
///
///
public HtmlTableCell(string tagName) : base(tagName) {
}
///
///
/// Gets or sets the horizontal alignment of content within an
/// control.
///
///
[
WebCategory("Layout"),
DefaultValue(""),
DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)
]
public string Align {
get {
string s = Attributes["align"];
return((s != null) ? s : String.Empty);
}
set {
Attributes["align"] = MapStringAttributeToString(value);
}
}
///
///
/// Gets or sets the background color of an
/// control.
///
///
[
WebCategory("Appearance"),
DefaultValue(""),
DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)
]
public string BgColor {
get {
string s = Attributes["bgcolor"];
return((s != null) ? s : String.Empty);
}
set {
Attributes["bgcolor"] = MapStringAttributeToString(value);
}
}
///
///
/// Gets or sets the border color of an
/// control.
///
///
[
WebCategory("Appearance"),
DefaultValue(""),
DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)
]
public string BorderColor {
get {
string s = Attributes["bordercolor"];
return((s != null) ? s : String.Empty);
}
set {
Attributes["bordercolor"] = MapStringAttributeToString(value);
}
}
/*
* Number of columns that this cell spans.
*/
///
///
/// Gets or sets the number of columns that the HtmlTableCell control spans.
///
///
[
WebCategory("Layout"),
DefaultValue(""),
DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)
]
public int ColSpan {
get {
string s = Attributes["colspan"];
return((s != null) ? Int32.Parse(s, CultureInfo.InvariantCulture) : -1);
}
set {
Attributes["colspan"] = MapIntegerAttributeToString(value);
}
}
///
///
/// Gets or sets the height, in pixels, of an
/// control.
///
///
[
WebCategory("Layout"),
DefaultValue(""),
DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)
]
public string Height {
get {
string s = Attributes["height"];
return((s != null) ? s : String.Empty);
}
set {
Attributes["height"] = MapStringAttributeToString(value);
}
}
/*
* Suppresses wrapping.
*/
///
///
/// Gets or sets a value indicating whether text within an
/// control
/// should be wrapped.
///
///
[
WebCategory("Behavior"),
DefaultValue(""),
DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden),
TypeConverter(typeof(MinimizableAttributeTypeConverter))
]
public bool NoWrap {
get {
string s = Attributes["nowrap"];
return((s != null) ? (s.Equals("nowrap")) : false);
}
set {
if (value)
Attributes["nowrap"] = "nowrap";
else
Attributes["nowrap"] = null;
}
}
/*
* Number of rows that this cell spans.
*/
///
///
/// Gets or sets the number of rows an control
/// spans.
///
///
[
WebCategory("Layout"),
DefaultValue(""),
DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)
]
public int RowSpan {
get {
string s = Attributes["rowspan"];
return((s != null) ? Int32.Parse(s, CultureInfo.InvariantCulture) : -1);
}
set {
Attributes["rowspan"] = MapIntegerAttributeToString(value);
}
}
///
///
/// Gets or sets the vertical alignment for text within an
/// control.
///
///
[
WebCategory("Layout"),
DefaultValue(""),
DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)
]
public string VAlign {
get {
string s = Attributes["valign"];
return((s != null) ? s : String.Empty);
}
set {
Attributes["valign"] = MapStringAttributeToString(value);
}
}
///
///
/// Gets or sets the width, in pixels, of an
/// control.
///
///
[
WebCategory("Layout"),
DefaultValue(""),
DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)
]
public string Width {
get {
string s = Attributes["width"];
return((s != null) ? s : String.Empty);
}
set {
Attributes["width"] = MapStringAttributeToString(value);
}
}
///
///
///
protected override void RenderEndTag(HtmlTextWriter writer) {
base.RenderEndTag(writer);
writer.WriteLine();
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Listbox.cs
- SendSecurityHeaderElement.cs
- Calendar.cs
- DataGridViewMethods.cs
- EasingFunctionBase.cs
- CollectionExtensions.cs
- RadioButton.cs
- TextTreeInsertUndoUnit.cs
- MultiDataTrigger.cs
- ImageAutomationPeer.cs
- XmlSchemaProviderAttribute.cs
- Boolean.cs
- SimpleApplicationHost.cs
- ObjectDataSourceEventArgs.cs
- Constants.cs
- Operators.cs
- PersonalizationState.cs
- RectangleGeometry.cs
- AssociatedControlConverter.cs
- ParameterCollection.cs
- Utils.cs
- SQLDateTimeStorage.cs
- SoapReflectionImporter.cs
- Identity.cs
- PackWebRequestFactory.cs
- Pointer.cs
- RowTypePropertyElement.cs
- UIElement.cs
- PointValueSerializer.cs
- webeventbuffer.cs
- DbDataReader.cs
- OrderedDictionary.cs
- SqlUdtInfo.cs
- CodeTypeMemberCollection.cs
- Int32EqualityComparer.cs
- OneWayChannelFactory.cs
- CompilerScopeManager.cs
- XmlSchemaInclude.cs
- FontCacheLogic.cs
- XamlRtfConverter.cs
- ApplicationDirectory.cs
- BoolExpression.cs
- SqlCacheDependency.cs
- ISFClipboardData.cs
- WebChannelFactory.cs
- XmlSchemaExporter.cs
- ReplyChannelBinder.cs
- SecurityChannelFactory.cs
- ContentElement.cs
- RequestCacheManager.cs
- LocalBuilder.cs
- PingOptions.cs
- SiteMapSection.cs
- BeginStoryboard.cs
- FontStretches.cs
- Encoder.cs
- OracleConnectionStringBuilder.cs
- ObjectDataSourceSelectingEventArgs.cs
- odbcmetadatacollectionnames.cs
- WorkflowExecutor.cs
- KeyBinding.cs
- GroupDescription.cs
- MatrixKeyFrameCollection.cs
- DispatcherOperation.cs
- SQLGuid.cs
- PiiTraceSource.cs
- InkCanvasAutomationPeer.cs
- TextParentUndoUnit.cs
- GradientStopCollection.cs
- ForeignConstraint.cs
- ResourceAssociationSetEnd.cs
- ServiceDebugElement.cs
- SimpleWebHandlerParser.cs
- SqlCommandBuilder.cs
- WebProxyScriptElement.cs
- VerificationException.cs
- StylusEventArgs.cs
- PowerModeChangedEventArgs.cs
- UnmanagedMarshal.cs
- ResolveMatchesCD1.cs
- MarkedHighlightComponent.cs
- ProviderCollection.cs
- MemberInfoSerializationHolder.cs
- SymDocumentType.cs
- Property.cs
- Visual3DCollection.cs
- MethodCallConverter.cs
- ZipIOCentralDirectoryDigitalSignature.cs
- GridViewDesigner.cs
- NTAccount.cs
- HuffmanTree.cs
- ProtocolsConfigurationEntry.cs
- PackUriHelper.cs
- ObjectListItem.cs
- HandleInitializationContext.cs
- formatstringdialog.cs
- HtmlEncodedRawTextWriter.cs
- DBConnectionString.cs
- AspNetCacheProfileAttribute.cs
- FeatureSupport.cs