SmartTagBase.Caption プロパティ (2007 System)
更新 : 2007 年 11 月
スマート タグの名前を取得します。
名前空間 : Microsoft.Office.Tools
アセンブリ : Microsoft.Office.Tools.Common.v9.0 (Microsoft.Office.Tools.Common.v9.0.dll 内)
構文
'宣言
Public ReadOnly Property Caption As String
'使用
Dim instance As SmartTagBase
Dim value As String
value = instance.Caption
public 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 ActionEventArgs) Handles Action2.Click
MsgBox("The current smart tag caption is '" & _
Me.Caption & "'. The current smart tag type is '" & _
Me.SmartTagType & "'.")
End Sub
// This action displays smart tag details.
private void Action2_Click(object sender, ActionEventArgs e)
{
MessageBox.Show("The current smart tag caption is '" +
this.Caption + "'. The current smart tag type is '" +
this.SmartTagType + "'.");
}
アクセス許可
- 直前の呼び出し元に対する完全な信頼。このメンバは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。