HtmlTextWriter.IsStyleAttributeDefined 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
确定是否在下一次调用 RenderBeginTag 方法期间呈现标记样式属性。
重载
IsStyleAttributeDefined(HtmlTextWriterStyle) |
确定下次调用 RenderBeginTag 方法时指定的标记样式属性是否呈现。 |
IsStyleAttributeDefined(HtmlTextWriterStyle, String) |
确定下次调用 RenderBeginTag 方法时是否呈现指定的标记样式属性及其值。 |
IsStyleAttributeDefined(HtmlTextWriterStyle)
确定下次调用 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
参数
与该属性相关联的 HtmlTextWriterStyle。
返回
如果下次调用 RenderBeginTag 方法时呈现该属性,则为 true
;否则为 false
。
示例
下面的代码示例演示如何检查 <label>
是否呈现元素。 如果是这样,该方法 IsStyleAttributeDefined 将检查 Color 是否已在元素上定义样式属性。 Color如果未定义该属性,该方法AddStyleAttribute将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)
{
// 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
注解
若要获取将使用指定样式属性呈现的值,请使用 IsStyleAttributeDefined(HtmlTextWriterStyle, String) 该方法的 IsStyleAttributeDefined 重载。
另请参阅
适用于
IsStyleAttributeDefined(HtmlTextWriterStyle, String)
确定下次调用 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
参数
与该属性相关联的 HtmlTextWriterStyle。
- value
- String
分配给样式属性的值。
返回
如果下次调用 RenderBeginTag 方法时呈现属性及其值,则为 true
;否则为 false
。
注解
IsStyleAttributeDefined如果该方法返回true
,则会在参数中value
返回要分配给HtmlTextWriterStyle该属性的值。