ChtmlTextWriter.OnStyleAttributeRender Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Determines whether the specified cHTML markup style attribute and its value can be rendered to the current markup element.
protected:
override bool OnStyleAttributeRender(System::String ^ name, System::String ^ value, System::Web::UI::HtmlTextWriterStyle key);
protected override bool OnStyleAttributeRender (string name, string value, System.Web.UI.HtmlTextWriterStyle key);
override this.OnStyleAttributeRender : string * string * System.Web.UI.HtmlTextWriterStyle -> bool
Protected Overrides Function OnStyleAttributeRender (name As String, value As String, key As HtmlTextWriterStyle) As Boolean
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
.
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"
.