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

いくつかの便利な記号を表します。
構文
Public Enum Symbols 
   Inherits System.Enum
public enum Symbols : System.Enum 
メンバ
メンバ解説
Arrow矢印。
ArrowDoubleOverline二重上線付き矢印。
ArrowDoubleUnderline二重下線付き矢印。
ArrowOverline上線付き矢印。
ArrowThickOverline太上線付き矢印。
ArrowThickUnderline太下線付き矢印。
ArrowUnderline下線付き矢印。
Dot点。
DoubleArrow二重矢印。
None空白記号。
ZoomInズームイン記号。
ZoomOutズームアウト記号。
解説
この列挙体は、ボタンに描画する記号を示すために、SymbolButton.Symbolプロパティで使用されます。
使用例
次のサンプルコードは、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.Symbols

プラットフォーム

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 名前空間
Symbol プロパティ

Send Feedback