PowerTools PlusPak for Windows Forms 8.0J
SymbolDirection 列挙体
使用例 使用例 

記号の向きを指定します。
構文
Public Enum SymbolDirection 
   Inherits System.Enum
public enum SymbolDirection : System.Enum 
メンバ
メンバ解説
Down下向き。
Left左向き。
Right右向き。
Up上向き。
解説
この列挙体は、SymbolButton.SymbolDirectionで使用されます。
使用例
次のサンプルコードは、SymbolButtonを作成し、このSymbolButtonで使用する記号の種類と記号の方向を指定します。このサンプルコードは、GrapeCity.Win.Containers.GcComboFrameクラスの概要に示されている詳細なコード例の一部を抜粋したものです。その元の例では、comboBox1からSymbolButton項目を選択して、コードによって作成されたSymbolButtonをgcComboFrame1に表示できます。
// 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.ValueType
      System.Enum
         GrapeCity.Win.Common.SymbolDirection

プラットフォーム

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

参照

GrapeCity.Win.Common 名前空間
SymbolDirection プロパティ

Send Feedback