バージョン

HasCaption プロパティ (TextEditorTool)

ゼロより長いキャプションがツールにある場合、True を返します。そうでない場合は False を返します。(読み取り専用)
シンタックス
'宣言
 
Public ReadOnly Property HasCaption As Boolean
public bool HasCaption {get;}
使用例
' Create TextEditorTool 
Dim textEditorTool As New TextEditorTool() 
textEditorTool.Id = "textEditor" 
textEditorTool.Caption = "textEditor" 
textEditorTool.KeyTip = "TE" 

Debug.Write("textEditorTool.HasCaption" + textEditorTool.HasCaption)
// Create TextEditorTool
TextEditorTool textEditorTool = new TextEditorTool();
textEditorTool.Id = "textEditor";
textEditorTool.Caption = "textEditor";
textEditorTool.KeyTip = "TE";

Debug.Write("textEditorTool.HasCaption" + textEditorTool.HasCaption);
参照