次の方法で共有


DocumentBase.CommandBars プロパティ

Microsoft Office Word のメニュー バーおよびすべてのツール バーを表す CommandBars コレクションを取得します。

名前空間:  Microsoft.Office.Tools.Word
アセンブリ:  Microsoft.Office.Tools.Word.v4.0.Utilities (Microsoft.Office.Tools.Word.v4.0.Utilities.dll 内)

構文

'宣言
Public ReadOnly Property CommandBars As CommandBars
public CommandBars CommandBars { get; }

プロパティ値

型 : Microsoft.Office.Core.CommandBars
Microsoft Office Word のメニュー バーおよびすべてのツール バーを表す CommandBars コレクション。

解説

CommandBars コレクションにアクセスする前にテンプレートまたは文書コンテキストを設定するには、CustomizationContext プロパティを使用します。

図形描画ツール バーをアプリケーションの下部に表示するコード例を次に示します。この例を使用するには、これをドキュメント レベルのプロジェクトの ThisDocument クラスから実行します。

Private Sub DocumentCommandBars()
    Me.CommandBars("Drawing").Visible = True
    Me.CommandBars("Drawing").Position = Office.MsoBarPosition.msoBarBottom
End Sub
private void DocumentCommandBars()
{
    this.CommandBars["Drawing"].Visible = true;
    this.CommandBars["Drawing"].Position = Office.MsoBarPosition.msoBarBottom;
}

.NET Framework セキュリティ

  • 直前の呼び出し元に対する完全な信頼。このメンバーは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。

参照

関連項目

DocumentBase クラス

Microsoft.Office.Tools.Word 名前空間