PowerTools PlusPak for Windows Forms 8.0J
Symbol プロパティ
使用例 

描画する記号を取得または設定します。
構文
Public Property Symbol As Symbols
public Symbols Symbol {get; set;}

プロパティ値

描画する記号を示すSymbols
例外
例外解説
System.ComponentModel.InvalidEnumArgumentException指定された値がSymbols値の1つではありません。
使用例

次のサンプルコードは、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
プラットフォーム

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 クラス
SymbolButton メンバ
Symbols 列挙体

Send Feedback