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

Dim instance As StatusStrip 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 です。


StatusStrip に、LayoutStyle プロパティを含む各種の共通プロパティを設定するためのコード例を次に示します。
statusStrip1.Dock = System.Windows.Forms.DockStyle.Top statusStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Visible statusStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {toolStripStatusLabel1}) statusStrip1.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow statusStrip1.Location = New System.Drawing.Point(0, 0) statusStrip1.Name = "statusStrip1" statusStrip1.ShowItemToolTips = True statusStrip1.Size = New System.Drawing.Size(292, 22) statusStrip1.SizingGrip = False statusStrip1.Stretch = False statusStrip1.TabIndex = 0 statusStrip1.Text = "statusStrip1"
statusStrip1.Dock = System.Windows.Forms.DockStyle.Top; statusStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Visible; statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { toolStripStatusLabel1}); statusStrip1.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow; statusStrip1.Location = new System.Drawing.Point(0, 0); statusStrip1.Name = "statusStrip1"; statusStrip1.ShowItemToolTips = true; statusStrip1.Size = new System.Drawing.Size(292, 22); statusStrip1.SizingGrip = false; statusStrip1.Stretch = false; statusStrip1.TabIndex = 0; statusStrip1.Text = "statusStrip1";

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に収録されているすべての辞書からStatusStrip.LayoutStyle プロパティを検索する場合は、下記のリンクをクリックしてください。

- StatusStrip.LayoutStyle プロパティのページへのリンク