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

ツールバー内の項目をオーバーフローメニューに送信できるかどうかを示す値を取得または設定します。
構文
Public Property ToolBarCanOverFlow As Boolean
public bool ToolBarCanOverFlow {get; set;}

プロパティ値

説明
True ツールバー内の項目をオーバーフローメニューに送信します。
False ツールバー内の項目をオーバーフローメニューに送信しません。
既定値はTrueです。
解説
ToolBarCanOverFlow プロパティをtrueに設定すると、ツールバー項目の内容がツールバーの幅を超えたときにその項目がオーバーフローメニューに送られます。
使用例
ツールバーを設定した GcRichTextBox コントロールを作成するコード例を次に示します。この例では他に ToolBarAllowToolTips、 ToolBarCanOverFlow、 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.