This documentation is archived and is not being maintained.

RowStyle Class

Represents the look and feel of a row in a table layout.

Namespace:  System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

'Declaration
Public Class RowStyle _
	Inherits TableLayoutStyle
'Usage
Dim instance As RowStyle

The RowStyle class represents the user interface (UI) characteristics of a row in a TableLayoutPanel. The styles for all the rows in a TableLayoutPanel are collected in the TableLayoutPanel.RowStyles property.

This simple class offers the Height and SizeType for a row.

The following code example demonstrates how to extract a RowStyle from a TableLayoutRowStyleCollection.

This code example is part of a larger example provided for the TableLayoutPanel class.

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

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 3.5, 3.0, 2.0
Show: