WebPartDescription.Title 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得相對應 WebPart 控制項的標題文字。
public:
property System::String ^ Title { System::String ^ get(); };
public string Title { get; }
member this.Title : string
Public ReadOnly Property Title As String
屬性值
包含對應控制項標題的字串。 .NET Framework 會提供已計算字串做為預設值。
範例
下列程式代碼範例示範屬性的程式 Title 設計用法。 如需執行此程式碼範例所需的完整程式碼,請參閱類別概觀主題的 WebPartDescription 範例一節。
網頁方法中的Button1_Click
下列程式代碼示範如何使用 方法來取得目錄中GetAvailableWebPartDescriptions的物件集合WebPartDescription,然後迴圈查看 物件,以顯示目錄中WebPartDescription每個WebPart控件的詳細數據。 請注意, Title 屬性值會在下列程式代碼中擷取。
protected void Button1_Click(object sender, EventArgs e)
{
Label1.Text = String.Empty;
WebPartDescriptionCollection descriptions =
DeclarativeCatalogPart1.GetAvailableWebPartDescriptions();
foreach (WebPartDescription desc in descriptions)
{
Label1.Text += "ID: " + desc.ID + "<br />" +
"Title: " + desc.Title + "<br />" +
"Description: " + desc.Description + "<br />" +
"ImageUrl: " + desc.CatalogIconImageUrl + "<br />" +
"<hr />";
}
}
Protected Sub Button1_Click(ByVal sender As Object, _
ByVal e As System.EventArgs)
Label1.Text = String.Empty
Dim descriptions As WebPartDescriptionCollection = _
DeclarativeCatalogPart1.GetAvailableWebPartDescriptions()
Dim desc As WebPartDescription
For Each desc In descriptions
Label1.Text += "ID: " & desc.ID & "<br />" & _
"Title: " & desc.Title & "<br />" & _
"Description: " & desc.Description & "<br />" & _
"ImageUrl: " & desc.CatalogIconImageUrl & "<br />" & _
"<hr />"
Next
End Sub
備註
屬性的值 Title 會直接對應至 WebPart.DisplayTitle 屬性。 WebPart不論對應的控件對於其DisplayTitle屬性具有何種屬性,都會成為屬性的值Title;否則,標題就是導出值。
只有在 Title 頁面處於目錄顯示模式,且 WebPart 控件顯示在控件目錄時,屬性才會套用。 指派給 WebPart 控件的任何標題都會出現在目錄中的控件旁邊。