SmartTagBase.Caption プロパティ
スマート タグの名前を取得します。この型またはメンバーは 2007 Microsoft Office システムのプロジェクト専用です。スマート タグは Office 2010 では使用されていません。
.
名前空間: Microsoft.Office.Tools
アセンブリ: Microsoft.Office.Tools.Common (Microsoft.Office.Tools.Common.dll 内)
構文
'宣言
ReadOnly Property Caption As String
string Caption { get; }
プロパティ値
型 : System.String
スマート タグの名前。
解説
スマート タグ メニューの上部に表示される、スマート タグの名前です。
例
Action.Click イベント用ハンドラーのコード例を次に示します。このイベント ハンドラーでは、Caption プロパティを使用してスマート タグの名前を表示します。このコード例は、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 + "'.");
}
.NET Framework セキュリティ
- 直前の呼び出し元に対する完全な信頼。このメンバーは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。