संपादित करें

इसके माध्यम से साझा किया गया


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(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.

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

See also