Window.CommandBars プロパティ
Window オブジェクトに関連付けられたウィンドウの Microsoft Office CommandBars コレクションへの参照を取得します。
名前空間: Microsoft.Office.InfoPath
アセンブリ: Microsoft.Office.InfoPath (microsoft.office.infopath.dll 内)
構文
'宣言
Public MustOverride ReadOnly Property CommandBars As Object
'使用
Dim instance As Window
Dim value As Object
value = instance.CommandBars
public abstract Object CommandBars { get; }
プロパティ値
Window オブジェクトに関連付けられたウィンドウの Microsoft Office CommandBars コレクションへの参照。
例外処理
例外の種類 | 条件 |
---|---|
フォーム テンプレートが、[フォームのオプション] ダイアログ ボックスの [セキュリティと信頼] カテゴリを使用して [完全信頼] として構成されていません。 |
コメント
CommandBars コレクションへの参照を確立した後は、このクラスのすべてのプロパティおよびメソッドにアクセスできます。
重要 : |
---|
CommandBars プロパティが機能するためには、Microsoft Visual Studio Tools for Applications (VSTA) または Visual Studio で [参照の追加] ダイアログ ボックスの [COM] タブを使用して、Microsoft Office 12.0 Object Library への参照を確立する必要があります。これにより、CommandBars クラスを含む Microsoft.Office.Core 名前空間への参照が確立されます。さらに、フォームは完全信頼として実行されている必要があります。 |
このメンバは、[フォームのオプション] ダイアログ ボックスの [セキュリティと信頼] カテゴリを使用して完全信頼で実行するように構成されているフォーム テンプレートから開かれたフォームだけがアクセスできます。このメンバは、直接呼出し元に対する完全な信頼が必要であり、部分的に信頼されたコードで使用することはできません。詳細については、MSDN の「部分的に信頼されたコードからライブラリを使用する」を参照してください。
この型またはメンバは、Microsoft Office InfoPath 2007 で開いているフォームで実行されているコードからのみアクセスできます。
例
次の例では、Window クラスの CommandBars プロパティを使用して、CommandBars コレクションを取得し、コマンド バーの数を表示しています。
この例を使用するには、フォーム コード モジュールの宣言セクションに Microsoft.Office.Core 名前空間の using または Imports ディレクティブが必要です。
// Get CommandBars collection casting to
// Microsoft.Office.Core.CommandBars type.
CommandBars myCommandBars =
(CommandBars)this.Application.ActiveWindow.CommandBars;
// Get count using CommandBars Count property.
int commandBarsCount = myCommandBars.Count;
// Display count of command bars.
MessageBox.Show("There are " + commandBarsCount.ToString() +
" Command Bars");
' Get CommandBars collection casting to
' Microsoft.Office.Core.CommandBars type.
Dim myCommandBars As CommandBars =
DirectCast(Me.Application.ActiveWindow.CommandBars, CommandBars)
' Get count using CommandBars Count property.
Dim commandBarsCount As Integer = myCommandBars.Count
' Display count of command bars.
MessageBox.Show("There are " & commandBarsCount.ToString() &
" Command Bars")