PowerTools InputMan for Windows Forms 8.0J
ToolBarDockPosition プロパティ
使用例 

コントロールのいずれかの端に対するドッキング位置の設定を取得または設定します。
構文
Public Property ToolBarDockPosition As ToolBarDockPositionStyle
public ToolBarDockPositionStyle ToolBarDockPosition {get; set;}

プロパティ値

コントロールのいずれかの端の位置を表すToolBarDockPositionStyle列挙値の1つ。既定値はToolBarDockPositionStyle.Topです。
解説
ToolBarDockPosition プロパティは、このツールバーのドッキング位置を定義する場合に使用します。
使用例
ツールバーを設定した GcRichTextBox コントロールを作成するコード例を次に示します。この例では他に ToolBarAllowToolTipsToolBarCanOverFlow、 ToolBarDockPosition そして ToolBarRenderMode プロパティを使用しています。
//  Please use the following namespace
//  using System.Windows.Forms;
//  using GrapeCity.Win.Editors;

public void InitializeGcRichTextBox()
{
    // Creates an instance of a GcRichTextBox control.
    GcRichTextBox gcRichTextBox1 = new GcRichTextBox();

    // Sets the ToolBarAllowToolTips to true for displaying the tool tips when mouse hovers over the toolbar items.
    gcRichTextBox1.ToolBarAllowToolTips = true;
    // Sets the ToolBarCanOverFlow to true. The toolbar will show the overflow button.
    gcRichTextBox1.ToolBarCanOverFlow = true;
    // Sets the toolbar docked to the top of the GcRichTextBox.
    gcRichTextBox1.ToolBarDockPosition = ToolBarDockPositionStyle.Top;
    // Sets the ToolBarRenderMode to System, the toolbar will display according current OS system.
    gcRichTextBox1.ToolBarRenderMode = ToolStripRenderMode.System;
}
'  Please use the following namespace
'  Imports System.Windows.Forms;
'  Imports GrapeCity.Win.Editors;

Public Sub InitializeGcRichTextBox()
    ' Creates an instance of a GcRichTextBox control.
    Dim gcRichTextBox1 As New GcRichTextBox()

    ' Sets the ToolBarAllowToolTips to true for displaying the tool tips when mouse hovers over the toolbar items.
    gcRichTextBox1.ToolBarAllowToolTips = True
    ' Sets the ToolBarCanOverFlow to true. The toolbar will show the overflow button.
    gcRichTextBox1.ToolBarCanOverFlow = True
    ' Sets the toolbar docked to the top of the GcRichTextBox.
    gcRichTextBox1.ToolBarDockPosition = ToolBarDockPositionStyle.Top
    ' Sets the ToolBarRenderMode to System, the toolbar will display according current OS system.
    gcRichTextBox1.ToolBarRenderMode = ToolStripRenderMode.System
End Sub
参照

GcRichTextBox クラス
GcRichTextBox メンバ

 

 


© 2004-2015 GrapeCity inc. All rights reserved.