GrapeCity.Win.Common 名前空間 : Symbols 列挙体 |
メンバ | 解説 |
---|---|
Arrow | 矢印。 |
ArrowDoubleOverline | 二重上線付き矢印。 |
ArrowDoubleUnderline | 二重下線付き矢印。 |
ArrowOverline | 上線付き矢印。 |
ArrowThickOverline | 太上線付き矢印。 |
ArrowThickUnderline | 太下線付き矢印。 |
ArrowUnderline | 下線付き矢印。 |
Dot | 点。 |
DoubleArrow | 二重矢印。 |
None | 空白記号。 |
ZoomIn | ズームイン記号。 |
ZoomOut | ズームアウト記号。 |
// 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