ToolStrip.LayoutStyle プロパティ
アセンブリ: System.Windows.Forms (system.windows.forms.dll 内)

Dim instance As ToolStrip Dim value As ToolStripLayoutStyle value = instance.LayoutStyle instance.LayoutStyle = value
public: property ToolStripLayoutStyle LayoutStyle { ToolStripLayoutStyle get (); void set (ToolStripLayoutStyle value); }
/** @property */ public ToolStripLayoutStyle get_LayoutStyle () /** @property */ public void set_LayoutStyle (ToolStripLayoutStyle value)
public function get LayoutStyle () : ToolStripLayoutStyle public function set LayoutStyle (value : ToolStripLayoutStyle)
ToolStripLayoutStyle 値の 1 つ。有効な値は、Table、Flow、StackWithOverflow、HorizontalStackWithOverflow、および VerticalStackWithOverflow です。


LayoutStyle プロパティもオーバーフロー値の 1 つに設定しないと、サイズ変更グリップは表示されません。LayoutStyle プロパティが Flow または Table に設定されている場合、サイズ変更グリップは表示されません。

ToolStrip に対し、LayoutStyle プロパティなど、共通のプロパティを設定するための構文を次のコード例に示します。
' This is an example of some common ToolStrip property settings. ' toolStrip1.AllowDrop = False toolStrip1.AllowItemReorder = True toolStrip1.AllowMerge = False toolStrip1.Anchor = CType(System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left Or System.Windows.Forms.AnchorStyles.Right, System.Windows.Forms.AnchorStyles) toolStrip1.AutoSize = False toolStrip1.CanOverflow = False toolStrip1.Cursor = Cursors.Cross toolStrip1.Dock = System.Windows.Forms.DockStyle.None toolStrip1.DefaultDropDownDirection = ToolStripDropDownDirection.BelowRight toolStrip1.GripMargin = New System.Windows.Forms.Padding(3) toolStrip1.ImageScalingSize = New System.Drawing.Size(20, 20) toolStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {toolStripButton1}) toolStrip1.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow toolStrip1.Location = New System.Drawing.Point(0, 0) toolStrip1.Margin = New System.Windows.Forms.Padding(1) toolStrip1.Name = "toolStrip1" toolStrip1.Padding = New System.Windows.Forms.Padding(0, 0, 2, 0) toolStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.System toolStrip1.ShowItemToolTips = False toolStrip1.Size = New System.Drawing.Size(109, 273) toolStrip1.Stretch = True toolStrip1.TabIndex = 0 toolStrip1.TabStop = True toolStrip1.Text = "toolStrip1" toolStrip1.TextDirection = System.Windows.Forms.ToolStripTextDirection.Vertical90
// This is an example of some common ToolStrip property settings. // toolStrip1.AllowDrop = false; toolStrip1.AllowItemReorder = true; toolStrip1.AllowMerge = false; toolStrip1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); toolStrip1.AutoSize = false; toolStrip1.CanOverflow = false; toolStrip1.Cursor = System.Windows.Forms.Cursors.Cross; toolStrip1.DefaultDropDownDirection = System.Windows.Forms.ToolStripDropDownDirection.BelowRight; toolStrip1.Dock = System.Windows.Forms.DockStyle.None; toolStrip1.GripMargin = new System.Windows.Forms.Padding(3); toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { toolStripButton1}); toolStrip1.ImageScalingSize = new System.Drawing.Size(20, 20); toolStrip1.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow; toolStrip1.Location = new System.Drawing.Point(0, 0); toolStrip1.Margin = new System.Windows.Forms.Padding(1); toolStrip1.Name = "toolStrip1"; toolStrip1.Padding = new System.Windows.Forms.Padding(0, 0, 2, 0); toolStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.System; toolStrip1.ShowItemToolTips = false; toolStrip1.Size = new System.Drawing.Size(109, 273); toolStrip1.Stretch = true; toolStrip1.TabIndex = 0; toolStrip1.TabStop = true; toolStrip1.Text = "toolStrip1"; toolStrip1.TextDirection = System.Windows.Forms.ToolStripTextDirection.Vertical90;

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


ToolStripLayoutStyle 列挙体
アセンブリ: System.Windows.Forms (system.windows.forms.dll 内)

Public Enumeration ToolStripLayoutStyle

メンバ名 | 説明 | |
---|---|---|
Flow | 項目が必要に応じて水平方向または垂直方向にフローするよう指定します。 | |
HorizontalStackWithOverflow | 項目を水平方向にレイアウトし、必要に応じてオーバーフローするよう指定します。 | |
StackWithOverflow | 項目を自動的にレイアウトするよう指定します。 | |
Table | 項目を左寄せでレイアウトするよう指定します。 | |
VerticalStackWithOverflow | 項目を垂直方向にレイアウトし、コントロール内で中央揃えで表示し、必要に応じてオーバーフローするよう指定します。 |

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からToolStrip.LayoutStyleを検索する場合は、下記のリンクをクリックしてください。

- ToolStrip.LayoutStyleのページへのリンク