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

Dim instance As TableLayoutPanel Dim value As TableLayoutRowStyleCollection value = instance.RowStyles
public: property TableLayoutRowStyleCollection^ RowStyles { TableLayoutRowStyleCollection^ get (); }
TableLayoutPanel コントロール内の各行の RowStyle を格納している TableLayoutRowStyleCollection。

RowStyles プロパティを使用すると、特定の行のスタイル プロパティにアクセスできます。RowStyle クラスのメンバを使用すると、テーブル内の個別の行の特性を設定できます。
TableLayoutPanel コントロールが行を配置する場合、各 RowStyle に次の順序で優先順位を割り当てます。

Button がクリックされたときに各行の RowStyle プロパティを設定するコード例を次に示します。
Private Sub toggleRowStylesBtn_Click( _ ByVal sender As System.Object, _ ByVal e As System.EventArgs) _ Handles toggleRowStylesBtn.Click Dim styles As TableLayoutRowStyleCollection = _ Me.TableLayoutPanel1.RowStyles For Each style As RowStyle In styles If style.SizeType = SizeType.Absolute Then style.SizeType = SizeType.AutoSize ElseIf style.SizeType = SizeType.AutoSize Then style.SizeType = SizeType.Percent ' Set the row height to be a percentage ' of the TableLayoutPanel control's height. style.Height = 33 Else ' Set the row height to 50 pixels. style.SizeType = SizeType.Absolute style.Height = 50 End If Next End Sub
private void toggleRowStylesBtn_Click( System.Object sender, System.EventArgs e) { TableLayoutRowStyleCollection styles = this.TableLayoutPanel1.RowStyles; foreach( RowStyle style in styles ) { if (style.SizeType==SizeType.Absolute) { style.SizeType = SizeType.AutoSize; } else if(style.SizeType==SizeType.AutoSize) { style.SizeType = SizeType.Percent; // Set the row height to be a percentage // of the TableLayoutPanel control's height. style.Height = 33; } else { // Set the row height to 50 pixels. style.SizeType = SizeType.Absolute; style.Height = 50; } } }

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

- TableLayoutPanel.RowStyles プロパティのページへのリンク