Sdílet prostřednictvím


SmartTagBase.Caption – vlastnost

Získá název inteligentní značky.

Obor názvů:  Microsoft.Office.Tools
Sestavení:  Microsoft.Office.Tools.Common (v Microsoft.Office.Tools.Common.dll)

Syntaxe

'Deklarace
ReadOnly Property Caption As String
    Get
string Caption { get; }

Hodnota vlastnosti

Typ: System.String
Název inteligentní značky.

Poznámky

Název inteligentní značky se zobrazí v horní nabídkainteligentní značky.

Příklady

Následující příklad kódu ukazuje obslužnou rutinu pro Action.Click událostí. Obslužné rutiny událost se používá Caption vlastnost zobrazí název inteligentní značky. Příklad kódu je součástí větší příklad k Microsoft.Office.Tools.Excel.SmartTag.

' This action displays smart tag details.
Private Sub Action2_Click(ByVal sender As Object,
    ByVal e As Microsoft.Office.Tools.Excel.ActionEventArgs) Handles Action2.Click
    MessageBox.Show("The current smart tag caption is '" &
    smartTagDemo.Caption & "'. The current smart tag type is '" &
    smartTagDemo.SmartTagType & "'.")
End Sub
// This action displays smart tag details.
private void Action2_Click(object sender,
    Microsoft.Office.Tools.Excel.ActionEventArgs e)
{
    MessageBox.Show("The current smart tag caption is '" +
        smartTagDemo.Caption + "'. The current smart tag type is '" +
        smartTagDemo.SmartTagType + "'.");
}

Zabezpečení rozhraní .NET Framework

Viz také

Odkaz

SmartTagBase Rozhraní

Microsoft.Office.Tools – obor názvů