ChtmlTextWriter.OnStyleAttributeRender Method

Definition

Determines whether the specified cHTML markup style attribute and its value can be rendered to the current markup element.

protected override bool OnStyleAttributeRender(string name, string value, System.Web.UI.HtmlTextWriterStyle key);

Parameters

name
String

A string containing the name of the style attribute to render.

value
String

A string containing the value that is assigned to name.

key
HtmlTextWriterStyle

The HtmlTextWriterStyle associated with name.

Returns

true if the style can be rendered; otherwise, false.

Remarks

The OnStyleAttributeRender method returns false when key is equal to the TextDecoration field and the value is "line-through".

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also