PowerTools PlusPak for Windows Forms 8.0J
SymbolButton クラス
メンバ  使用例 

ピッカーコントロールに表示される記号ボタンを表します。
構文
Public Class SymbolButton 
   Inherits SideButtonBase
public class SymbolButton : SideButtonBase 
解説
SymbolButtonはピッカーコントロールのサイドボタンの1つです。このボタンを使用すると、各種のSymbolsを表示できます。
使用例

次のサンプルコードは、SymbolButtonを作成し、ボタンの一般的なプロパティを設定します。

このサンプルコードは、GrapeCity.Win.Containers.GcComboFrameクラスの概要に示されている詳細なコード例の一部を抜粋したものです。その元の例では、最初にcomboBox1からSymbolButton項目を選択してgcComboFrame1にSymbolButtonを表示し、次にDropDownButtonをクリックしてドロップダウンウィンドウを開閉できます。

// Returns a SymbolButton instance for gcComboFrame1.
private SideButtonBase CreateSymbolButton()
{
    SymbolButton symbolButton = new SymbolButton();

    // Specify a unique name for this button.
    symbolButton.Name = "SymbolButton";

    // Specify one kind of symbol and the symbol's direction for this button.
    symbolButton.Symbol = Symbols.DoubleArrow;
    symbolButton.SymbolDirection = SymbolDirection.Down;

    // Set this button not be shown.
    symbolButton.Visible = ButtonVisibility.NotShown;

    // Set button's position.
    symbolButton.Position = ButtonPosition.RightOutside;

    return symbolButton;
}
' Returns a SymbolButton instance for gcComboFrame1.
Private Function CreateSymbolButton() As SideButtonBase
    Dim symbolButton As New SymbolButton()

    ' Specify a unique name for this button.
    symbolButton.Name = "SymbolButton"

    ' Specify one kind of symbol and the symbol's direction for this button.
    symbolButton.Symbol = Symbols.DoubleArrow
    symbolButton.SymbolDirection = SymbolDirection.Down

    ' Set this button not be shown.
    symbolButton.Visible = ButtonVisibility.NotShown

    ' Set button's position.
    symbolButton.Position = ButtonPosition.RightOutside

    Return symbolButton
End Function
継承階層

System.Object
   System.MarshalByRefObject
      System.ComponentModel.Component
         GrapeCity.Win.Common.SideButtonBase
            GrapeCity.Win.Common.SymbolButton

プラットフォーム

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

参照

SymbolButton メンバ
GrapeCity.Win.Common 名前空間

Send Feedback