HtmlTextWriter.IsStyleAttributeDefined Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Determina se viene eseguito il rendering di un attributo di stile markup durante la chiamata successiva del metodo RenderBeginTag.
Overload
IsStyleAttributeDefined(HtmlTextWriterStyle) |
Determina se viene eseguito il rendering dell'attributo di stile markup specificato durante la chiamata successiva del metodo RenderBeginTag. |
IsStyleAttributeDefined(HtmlTextWriterStyle, String) |
Determina se viene eseguito il rendering dell'attributo di stile markup specificato e del relativo valore durante la chiamata successiva del metodo RenderBeginTag. |
IsStyleAttributeDefined(HtmlTextWriterStyle)
Determina se viene eseguito il rendering dell'attributo di stile markup specificato durante la chiamata successiva del metodo RenderBeginTag.
protected:
bool IsStyleAttributeDefined(System::Web::UI::HtmlTextWriterStyle key);
protected bool IsStyleAttributeDefined (System.Web.UI.HtmlTextWriterStyle key);
member this.IsStyleAttributeDefined : System.Web.UI.HtmlTextWriterStyle -> bool
Protected Function IsStyleAttributeDefined (key As HtmlTextWriterStyle) As Boolean
Parametri
Oggetto HtmlTextWriterStyle associato all'attributo.
Restituisce
true
se viene eseguito il rendering dell'attributo durante la chiamata successiva del metodo RenderBeginTag; in caso contrario, false
.
Esempio
Nell'esempio di codice seguente viene illustrato come verificare se viene eseguito il rendering di un <label>
elemento. In tal caso, il IsStyleAttributeDefined metodo verifica se un Color attributo di stile è stato definito nell'elemento. Se l'attributo non è stato definito, il metodo definisce l'attributo Color Color e imposta il relativo valore su red
.AddStyleAttribute
// If the markup element being rendered is a Label,
// render the opening tag of a <Font> element before it.
if ( tagKey == HtmlTextWriterTag::Label )
{
// Check whether a Color style attribute is
// included on the Label. If not, use the
// AddStyleAttribute and GetStyleName methods to add one
// and set its value to red.
if ( !IsStyleAttributeDefined( HtmlTextWriterStyle::Color ) )
{
AddStyleAttribute( GetStyleName( HtmlTextWriterStyle::Color ), "red" );
}
// If the markup element being rendered is a Label,
// render the opening tag of a Font element before it.
if (tagKey == HtmlTextWriterTag.Label)
{
// Check whether a Color style attribute is
// included on the Label. If not, use the
// AddStyleAttribute and GetStyleName methods to add one
// and set its value to red.
if (!IsStyleAttributeDefined(HtmlTextWriterStyle.Color))
{
AddStyleAttribute(GetStyleName(HtmlTextWriterStyle.Color), "red");
}
' If the markup element being rendered is a Label,
' render the opening tag of a Font element before it.
If tagKey = HtmlTextWriterTag.Label Then
' Check whether a Color style attribute is
' included on the Label. If not, use the
' AddStyleAttribute and GetStyleName methods to add one
' and set its value to red.
If Not IsStyleAttributeDefined(HtmlTextWriterStyle.Color) Then
AddStyleAttribute(GetStyleName(HtmlTextWriterStyle.Color), "red")
End If
Commenti
Per ottenere il valore che verrà eseguito il rendering con l'attributo di stile specificato, usare l'overload IsStyleAttributeDefined(HtmlTextWriterStyle, String) del IsStyleAttributeDefined metodo.
Vedi anche
Si applica a
IsStyleAttributeDefined(HtmlTextWriterStyle, String)
Determina se viene eseguito il rendering dell'attributo di stile markup specificato e del relativo valore durante la chiamata successiva del metodo RenderBeginTag.
protected:
bool IsStyleAttributeDefined(System::Web::UI::HtmlTextWriterStyle key, [Runtime::InteropServices::Out] System::String ^ % value);
protected bool IsStyleAttributeDefined (System.Web.UI.HtmlTextWriterStyle key, out string value);
member this.IsStyleAttributeDefined : System.Web.UI.HtmlTextWriterStyle * string -> bool
Protected Function IsStyleAttributeDefined (key As HtmlTextWriterStyle, ByRef value As String) As Boolean
Parametri
Oggetto HtmlTextWriterStyle associato all'attributo.
- value
- String
Valore assegnato all'attributo di stile.
Restituisce
true
se viene eseguito il rendering dell'attributo e del relativo valore durante la chiamata successiva del metodo RenderBeginTag; in caso contrario, false
.
Commenti
Se il IsStyleAttributeDefined metodo restituisce true
, il valore da assegnare all'attributo HtmlTextWriterStyle viene restituito nel value
parametro .