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)


public ref class RowStyle : TableLayoutStyle

NameDescription
System_CAPS_pubmethodRowStyle()

Initializes an instance of the RowStyle class to its default state.

System_CAPS_pubmethodRowStyle(SizeType)

Initializes an instance of the RowStyle class using the supplied SizeType value.

System_CAPS_pubmethodRowStyle(SizeType, Single)

Initializes an instance of the RowStyle class using the supplied SizeType and height values.

NameDescription
System_CAPS_pubpropertyHeight

Gets or sets the height of a row.

System_CAPS_pubpropertySizeType

Gets or sets a flag indicating how a row or column should be sized relative to its containing table.(Inherited from TableLayoutStyle.)

NameDescription
System_CAPS_pubmethodEquals(Object^)

Determines whether the specified object is equal to the current object.(Inherited from Object.)

System_CAPS_protmethodFinalize()

Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.)

System_CAPS_pubmethodGetHashCode()

Serves as the default hash function. (Inherited from Object.)

System_CAPS_pubmethodGetType()

Gets the Type of the current instance.(Inherited from Object.)

System_CAPS_protmethodMemberwiseClone()

Creates a shallow copy of the current Object.(Inherited from Object.)

System_CAPS_pubmethodToString()

Returns a string that represents the current object.(Inherited from Object.)

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.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 2.0

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

Return to top
Show: