バージョン

HasCaption プロパティ (MaskedEditorTool)

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

Debug.Write("maskedEditorTool.HasCaption" + maskedEditorTool.HasCaption)
// Create MaskedEditorTool
MaskedEditorTool maskedEditorTool = new MaskedEditorTool();
maskedEditorTool.Id = "maskedEditor";
maskedEditorTool.Caption = "maskedEditor";
maskedEditorTool.KeyTip = "ME";

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