HtmlTextWriter.RegisterStyle(String, HtmlTextWriterStyle) 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.
Registers markup style properties, whether literals or dynamically generated, from the source file so that they can be properly rendered to the requesting client.
protected:
static void RegisterStyle(System::String ^ name, System::Web::UI::HtmlTextWriterStyle key);
protected static void RegisterStyle (string name, System.Web.UI.HtmlTextWriterStyle key);
static member RegisterStyle : string * System.Web.UI.HtmlTextWriterStyle -> unit
Protected Shared Sub RegisterStyle (name As String, key As HtmlTextWriterStyle)
Parameters
- name
- String
The string passed from the source file specifying the style name.
The HtmlTextWriterStyle that corresponds with the specified style.
Remarks
The predefined cascading style sheet (CSS) attributes of the HTML markup language are registered by calls to the RegisterStyle method when the first HtmlTextWriter object is created. Dynamic style attributes can be registered by using the RegisterStyle method at other times.
The registration table used by the RegisterStyle method is static
, so registration of attributes applies to all HtmlTextWriter objects on the host computer.