共用方式為


HtmlHead.StyleSheet 屬性

定義

取得 IStyleSheet 執行個體,表示 HtmlHead 控制項中的樣式規則。

public:
 property System::Web::UI::IStyleSheet ^ StyleSheet { System::Web::UI::IStyleSheet ^ get(); };
public System.Web.UI.IStyleSheet StyleSheet { get; }
member this.StyleSheet : System.Web.UI.IStyleSheet
Public ReadOnly Property StyleSheet As IStyleSheet

屬性值

物件,表示 HtmlHead 控制項中的樣式規則。

範例

下列範例示範如何以程序設計方式新增 HTML body 專案的內嵌樣式規則。 此範例是針對 類別提供的較大範例的 HtmlHead 一部分。

// Add the style rule named bodyStyle to the header 
// of the current page. The rule is for the body HTML element.
Page.Header.StyleSheet.CreateStyleRule(bodyStyle, null, "body");
' Add the style rule named bodyStyle to the header 
' of the current page. The rule is for the body HTML element.
Page.Header.StyleSheet.CreateStyleRule(bodyStyle, Nothing, "body")

備註

屬性 StyleSheet 會傳回 , IStyleSheet 表示 控件中的 HtmlHead 內嵌樣式規則。

注意

不支援在異步回傳期間以程序設計方式新增樣式或樣式規則。 當您將AJAX功能新增至 ASP.NET 網頁時,異步回傳會更新頁面的區域,而不會更新整個頁面。 如需詳細資訊,請參閱 Microsoft Ajax 概觀

適用於

另請參閱